> ## 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 Shareable Results Link

> Generate a shareable public link for the interview results



## OpenAPI

````yaml https://api.ropes.ai/api/docs/openapi.json get /api/public/results/{interviewId}/shared
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}/shared:
    get:
      tags:
        - Results
      summary: Get Shareable Results Link
      description: Generate a shareable public link for 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 share link
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ShareLink'
        '401':
          description: Unauthorized - Invalid or missing API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResultErrorResponse'
        '404':
          description: Result not found or share link 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:
    ShareLink:
      type: object
      properties:
        shareLink:
          type: string
          format: uri
          description: The shareable URL for the interview results
      required:
        - shareLink
    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

````