Calls
Inspect call history, transcripts, and tool invocations.
Calls represent live or completed phone conversations handled by Orbitali.
Common operations
| Method | Path | Description |
|---|---|---|
GET | /v1/calls | List calls |
GET | /v1/calls/{call_id} | Get call details |
GET | /v1/calls/{call_id}/messages | List transcript messages |
GET | /v1/calls/{call_id}/tool-invocations | List tool invocations |
Call fields
| Field | Description |
|---|---|
id | Unique call identifier |
agent_id | Agent that handled the call |
from | Caller phone number |
to | Orbitali phone number |
status | Current or final call status |
duration_seconds | Final call duration when complete |
Transcript messages
Transcript messages are stored as turns with a role, text, and timestamp.
{
"role": "assistant",
"content": "Thanks for calling. How can I help?",
"created_at": "2026-05-14T12:00:00Z"
}