> ## 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.

# Download resume as PDF

> Generates a PDF for the specified resume and returns it as a forced download. Only resumes belonging to the authenticated user can be downloaded. Requires authentication.



## OpenAPI

````yaml /spec.json get /resumes/{id}/pdf
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/{id}/pdf:
    get:
      tags:
        - Resumes
      summary: Download resume as PDF
      description: >-
        Generates a PDF for the specified resume and returns it as a forced
        download. Only resumes belonging to the authenticated user can be
        downloaded. Requires authentication.
      operationId: downloadResumePdf
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
            description: The ID of the resume.
      responses:
        '200':
          description: The generated resume PDF.
          headers:
            content-disposition:
              schema:
                type: string
              required: true
          content:
            application/pdf:
              schema:
                type: string
                contentMediaType: application/pdf
components:
  securitySchemes:
    apiKey:
      type: apiKey
      name: x-api-key
      in: header
      description: The API key to authenticate requests.

````