> ## 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 All Scores

> Get scores for all interviews in the authenticated organization



## OpenAPI

````yaml https://api.ropes.ai/api/docs/openapi.json get /api/public/results/scores
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/scores:
    get:
      tags:
        - Results
      summary: Get All Scores
      description: Get scores for all interviews in the authenticated organization
      responses:
        '200':
          description: Successfully retrieved all interview scores
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AllScoresResponse'
        '401':
          description: Unauthorized - Invalid or missing API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResultErrorResponse'
        '500':
          description: Server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResultErrorResponse'
      security:
        - ApiKeyAuth: []
components:
  schemas:
    AllScoresResponse:
      type: object
      properties:
        scores:
          type: array
          items:
            $ref: '#/components/schemas/ScoreItem'
          description: List of all interview scores for the organization
      required:
        - scores
    ResultErrorResponse:
      type: object
      properties:
        error:
          type: string
          description: Error message
        message:
          type: string
          description: Error message (alternative field)
    ScoreItem:
      type: object
      properties:
        interviewId:
          type: string
          description: Identifier of the interview
        score:
          type: number
          nullable: true
          description: >-
            The aggregate score for the interview (0-100), null if not yet
            completed
      required:
        - interviewId
        - score
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````