Skip to main content
GET
/
caller-profiles
/
agents
/
{agent_id}
/
{phone}
/
calls
Get Caller Calls
curl --request GET \
  --url https://api.example.com/caller-profiles/agents/{agent_id}/{phone}/calls \
  --header 'Authorization: Bearer <token>'
[
  {
    "call_id": "<string>",
    "direction": "<string>",
    "started_at": "<string>",
    "ended_at": "<string>",
    "duration_seconds": 123,
    "status": "<string>",
    "country_code": "<string>"
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.mrassistant.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

agent_id
string<uuid>
required
phone
string
required

Query Parameters

limit
integer
default:20
Required range: x <= 100

Response

Successful Response

call_id
string
required
direction
string
required
started_at
string | null
ended_at
string | null
duration_seconds
integer | null
status
string | null
country_code
string | null