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

# Get Results PDF

> Generate and download a PDF report of the interview results



## OpenAPI

````yaml https://api.ropes.ai/api/docs/openapi.json get /api/public/results/{interviewId}/pdf
openapi: 3.0.0
info:
  title: Ropes Public API
  version: 1.0.0
  description: >-
    Public API for Ropes. Authenticate using your API key in the x-api-key
    header.
servers:
  - url: https://api.ropes.ai
    description: Production server
  - url: http://localhost:3001
    description: Local development server
security: []
paths:
  /api/public/results/{interviewId}/pdf:
    get:
      tags:
        - Results
      summary: Get Results PDF
      description: Generate and download a PDF report of the interview results
      parameters:
        - schema:
            type: string
            description: The unique identifier of the interview
          required: true
          description: The unique identifier of the interview
          name: interviewId
          in: path
      responses:
        '200':
          description: Successfully generated PDF
          content:
            application/pdf:
              schema:
                type: string
                description: PDF binary data
        '401':
          description: Unauthorized - Invalid or missing API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResultErrorResponse'
        '404':
          description: Result not found or PDF could not be generated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResultErrorResponse'
        '500':
          description: Server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResultErrorResponse'
      security:
        - ApiKeyAuth: []
components:
  schemas:
    ResultErrorResponse:
      type: object
      properties:
        error:
          type: string
          description: Error message
        message:
          type: string
          description: Error message (alternative field)
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````