Skip to main content
GET
/
call
/
{id}
cURL
curl --request GET \
  --url https://www.getrevox.com/api/call/{id}
{
  "call": {
    "id": "<string>",
    "from_phone_number": "<string>",
    "to_phone_number": "<string>",
    "direction": "inbound",
    "is_completed": true,
    "calls_count": 123,
    "next_call_at": "<unknown>",
    "last_call_attempt": {
      "id": "<string>",
      "phone_number": "<string>",
      "status": "queued",
      "result": "IVR",
      "recording_url": "<string>",
      "started_at": "<unknown>",
      "answered_at": "<unknown>",
      "ended_at": "<unknown>",
      "transcript": [
        {
          "role": "user",
          "content": "<string>"
        }
      ],
      "structured_output": {}
    },
    "call_retry_config": {
      "calling_window_start_time": "<string>",
      "calling_window_end_time": "<string>",
      "retry_delay_seconds": 7200,
      "max_retry_attempts": 3,
      "timezone": "<string>"
    },
    "llm_model": {
      "type": "dedicated-instance",
      "name": "gpt-4.1"
    },
    "call_attempts": [
      {
        "id": "<string>",
        "phone_number": "<string>",
        "status": "queued",
        "result": "IVR",
        "recording_url": "<string>",
        "started_at": "<unknown>",
        "answered_at": "<unknown>",
        "ended_at": "<unknown>",
        "transcript": [
          {
            "role": "user",
            "content": "<string>"
          }
        ],
        "structured_output": {}
      }
    ],
    "created_at": "<unknown>"
  }
}

Headers

authorization
string

Bearer auth token. Example: Bearer sk_123...

Path Parameters

id
string
required

The ID of the call to get.

Response

200

call
object
required

This represent a call "order" that was requested by the user. A call order can be resolved over multiple call attempts spanning up to a few days.