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

# Get a call

> Gets one call report after direct resource authorization. Requires `calls.read`.



## OpenAPI

````yaml /public-v2.json get /calls/{callId}
openapi: 3.0.3
info:
  title: Triple Session Public API
  version: 2.0.0
  license:
    name: Proprietary
    url: https://triplesession.com/terms-of-service
  description: |
    Public API v2 exposes Triple Session data through stable REST endpoints.
    Requests are authenticated with a public API key sent as a bearer token.
    The API key determines the maximum accessible resource scope.
servers:
  - url: https://api.triplesession.com/v2
    description: Production
security:
  - bearerAuth: []
tags:
  - name: Calls
    description: Call report data and artifacts.
  - name: Scorecards
    description: Scorecard rubric data.
paths:
  /calls/{callId}:
    get:
      tags:
        - Calls
      summary: Get a call
      description: >-
        Gets one call report after direct resource authorization. Requires
        `calls.read`.
      operationId: getCall
      parameters:
        - $ref: '#/components/parameters/CallId'
      responses:
        '200':
          description: Call report details.
          headers:
            X-RateLimit-Limit:
              $ref: '#/components/headers/XRateLimitLimit'
            X-RateLimit-Remaining:
              $ref: '#/components/headers/XRateLimitRemaining'
            X-RateLimit-Reset:
              $ref: '#/components/headers/XRateLimitReset'
            X-RateLimit-Active-Window:
              $ref: '#/components/headers/XRateLimitActiveWindow'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CallResponse'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
        '429':
          $ref: '#/components/responses/RateLimited'
        '500':
          $ref: '#/components/responses/InternalServerError'
components:
  parameters:
    CallId:
      name: callId
      in: path
      required: true
      description: Call ID.
      schema:
        type: string
        format: uuid
  headers:
    XRateLimitLimit:
      description: Limit for the active rate limit window.
      schema:
        type: integer
    XRateLimitRemaining:
      description: Requests remaining in the active rate limit window.
      schema:
        type: integer
    XRateLimitReset:
      description: Unix timestamp when the active rate limit window resets.
      schema:
        type: integer
    XRateLimitActiveWindow:
      description: Active rate limit window.
      schema:
        type: string
        enum:
          - minute
          - hour
    RetryAfter:
      description: Seconds until the request may be retried.
      schema:
        type: integer
  schemas:
    CallResponse:
      type: object
      required:
        - call
      properties:
        call:
          $ref: '#/components/schemas/Call'
      additionalProperties: false
    Call:
      type: object
      required:
        - id
        - name
        - owner_id
        - score
        - score_breakdown
        - scorecard
        - scorecard_id
        - created_at
        - duration_in_minutes
        - source
        - evaluatee_user_id
        - evaluatee_user_name
        - evaluatee_email
      properties:
        id:
          type: string
        name:
          type: string
        owner_id:
          type: string
        score:
          type: number
        score_breakdown:
          type: object
          additionalProperties: true
        scorecard:
          type: string
        scorecard_id:
          type: string
        created_at:
          type: string
          format: date-time
        duration_in_minutes:
          type: number
          nullable: true
        source:
          type: string
          nullable: true
        evaluatee_user_id:
          type: string
        evaluatee_user_name:
          type: string
        evaluatee_email:
          type: string
        participants:
          type: array
          items:
            type: string
        attendees:
          type: array
          items:
            type: string
        crm_objects:
          type: array
          items:
            $ref: '#/components/schemas/CrmObject'
      additionalProperties: false
    ErrorResponse:
      type: object
      required:
        - error
      properties:
        error:
          type: object
          required:
            - message
          properties:
            message:
              type: string
      additionalProperties: false
    CrmObject:
      type: object
      required:
        - id
        - name
        - url
        - type
      properties:
        id:
          type: string
        name:
          type: string
        url:
          type: string
        type:
          type: string
      additionalProperties: false
  responses:
    BadRequest:
      description: Invalid path or query parameters.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    Unauthorized:
      description: Missing or invalid bearer authentication.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    Forbidden:
      description: >-
        Missing scope, expired key, unsupported key scope, or resource outside
        the API key scope.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    NotFound:
      description: Requested call or scorecard was not found.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    RateLimited:
      description: Rate limit exceeded.
      headers:
        Retry-After:
          $ref: '#/components/headers/RetryAfter'
        X-RateLimit-Limit:
          $ref: '#/components/headers/XRateLimitLimit'
        X-RateLimit-Remaining:
          $ref: '#/components/headers/XRateLimitRemaining'
        X-RateLimit-Reset:
          $ref: '#/components/headers/XRateLimitReset'
        X-RateLimit-Active-Window:
          $ref: '#/components/headers/XRateLimitActiveWindow'
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    InternalServerError:
      description: Unexpected server error.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API key
      description: Use a public API key with the endpoint's required scope.

````