> ## Documentation Index
> Fetch the complete documentation index at: https://docs.rxresu.me/llms.txt
> Use this file to discover all available pages before exploring further.

# Verify resume password

> Verifies a password for a password-protected public resume. On success, the viewer is granted access to view the resume data for the duration of their session. No authentication required.



## OpenAPI

````yaml /spec.json post /resumes/{username}/{slug}/password/verify
openapi: 3.1.1
info:
  title: Reactive Resume
  version: 5.1.0
  description: Reactive Resume API
  license:
    name: MIT
    url: https://github.com/amruthpillai/reactive-resume/blob/main/LICENSE
  contact:
    name: Amruth Pillai
    email: hello@amruthpillai.com
    url: https://amruthpillai.com
servers:
  - url: http://localhost:3000/api/openapi
security:
  - apiKey: []
externalDocs:
  url: https://docs.rxresu.me
  description: Reactive Resume Documentation
paths:
  /resumes/{username}/{slug}/password/verify:
    post:
      tags:
        - Resume Sharing
      summary: Verify resume password
      description: >-
        Verifies a password for a password-protected public resume. On success,
        the viewer is granted access to view the resume data for the duration of
        their session. No authentication required.
      operationId: verifyResumePassword
      parameters:
        - name: username
          in: path
          required: true
          schema:
            type: string
            minLength: 1
            description: The username of the resume owner.
        - name: slug
          in: path
          required: true
          schema:
            type: string
            minLength: 1
            description: The slug of the resume.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                password:
                  type: string
                  minLength: 1
                  description: The password to verify.
              required:
                - password
      responses:
        '200':
          description: The password was verified successfully and access has been granted.
          content:
            application/json:
              schema:
                type: boolean
components:
  securitySchemes:
    apiKey:
      type: apiKey
      name: x-api-key
      in: header
      description: The API key to authenticate requests.

````