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

# Get call

> Returns one call of the key's number. {callId} accepts the Pilot Status id (call_...) OR the provider call id (Meta wacid / Evolution GO CallID). SDPs are omitted by default — pass ?includeSdp=1 to receive sdpOffer/sdpAnswer (needed e.g. to answer an inbound call on a Meta number; always null on web numbers). 404 CALL_NOT_FOUND when the call does not belong to the number. Meta and web numbers.

**Requires a number-scoped key.**



## OpenAPI

````yaml openapi.json GET /v1/calls/{callId}
openapi: 3.1.0
info:
  title: Pilot Status API
  version: 1.0.0
  license:
    name: Pilot Status Terms of Service
    url: https://pilotstatus.com.br/terms
  description: >-
    Public REST API for Pilot Status. Authenticate with the `x-api-key: ps_...`
    header (or `x-api-key-id`). Base URL: https://pilotstatus.com.br
servers:
  - url: https://pilotstatus.com.br
security:
  - apiKey: []
  - apiKeyId: []
paths:
  /v1/calls/{callId}:
    get:
      tags:
        - Calls
      summary: Get call
      description: >-
        Returns one call of the key's number. {callId} accepts the Pilot Status
        id (call_...) OR the provider call id (Meta wacid / Evolution GO
        CallID). SDPs are omitted by default — pass ?includeSdp=1 to receive
        sdpOffer/sdpAnswer (needed e.g. to answer an inbound call on a Meta
        number; always null on web numbers). 404 CALL_NOT_FOUND when the call
        does not belong to the number. Meta and web numbers.


        **Requires a number-scoped key.**
      operationId: get_calls_callId
      parameters:
        - name: callId
          in: path
          required: true
          description: Pilot Status id (call_...) or provider call id (wacid / CallID).
          schema:
            type: string
          example: call_01HZX...
        - name: includeSdp
          in: query
          required: false
          description: Include sdpOffer/sdpAnswer in the DTO.
          schema:
            type: string
            description: ("1")
          example: '1'
      responses:
        '200':
          description: Fetch call with SDP
          content:
            application/json:
              example:
                id: call_01HZX...
                externalCallId: wacid.ABGG...
                direction: INBOUND
                status: RINGING
                peerNumber: '5511999999999'
                sdpOffer: "v=0\r\n..."
                sdpAnswer: null
                createdAt: '2026-07-03T15:00:00.000Z'
                updatedAt: '2026-07-03T15:00:00.000Z'
        '400':
          description: Invalid payload or parameters
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                  code:
                    type: string
              example:
                error: Validation error
        '401':
          description: Missing or invalid `x-api-key` / `x-api-key-id` header
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                  code:
                    type: string
              example:
                error: Unauthorized
        '403':
          description: Tenant-scoped key used on a number-scoped endpoint
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                  code:
                    type: string
              example:
                error: Tenant-scoped keys cannot call number endpoints
                code: TENANT_SCOPE_NOT_ALLOWED
        '429':
          description: Rate limit exceeded
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                  code:
                    type: string
              example:
                error: Too many requests
components:
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: Your ps_ API key
    apiKeyId:
      type: apiKey
      in: header
      name: x-api-key-id
      description: API key id (alternative to x-api-key)

````