curl --request GET \
--url https://api.bland.ai/v1/contacts/{contact_id} \
--header 'authorization: <authorization>'{
"data": {
"id": "aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee",
"org_id": "11111111-2222-3333-4444-555555555555",
"name": "John Doe",
"metadata": {},
"created_at": "2025-07-20T10:30:00.000Z",
"updated_at": "2025-07-22T15:45:00.000Z",
"identifiers": [
{
"id": "...",
"contact_id": "aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee",
"identifier_type": "phone_number",
"identifier_value": "+15551234567",
"is_primary": true
}
],
"memories": [
{
"id": "...",
"contact_id": "aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee",
"persona_id": null,
"agent_number": "+15559876543",
"summary": "Customer prefers morning calls.",
"facts": {},
"entities": []
}
]
},
"errors": null
}
Retrieve a contact by its unique ID, including all identifiers, contact_memories (per persona/agent), and memory entities.
curl --request GET \
--url https://api.bland.ai/v1/contacts/{contact_id} \
--header 'authorization: <authorization>'{
"data": {
"id": "aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee",
"org_id": "11111111-2222-3333-4444-555555555555",
"name": "John Doe",
"metadata": {},
"created_at": "2025-07-20T10:30:00.000Z",
"updated_at": "2025-07-22T15:45:00.000Z",
"identifiers": [
{
"id": "...",
"contact_id": "aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee",
"identifier_type": "phone_number",
"identifier_value": "+15551234567",
"is_primary": true
}
],
"memories": [
{
"id": "...",
"contact_id": "aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee",
"persona_id": null,
"agent_number": "+15559876543",
"summary": "Customer prefers morning calls.",
"facts": {},
"entities": []
}
]
},
"errors": null
}
{
"data": {
"id": "aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee",
"org_id": "11111111-2222-3333-4444-555555555555",
"name": "John Doe",
"metadata": {},
"created_at": "2025-07-20T10:30:00.000Z",
"updated_at": "2025-07-22T15:45:00.000Z",
"identifiers": [
{
"id": "...",
"contact_id": "aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee",
"identifier_type": "phone_number",
"identifier_value": "+15551234567",
"is_primary": true
}
],
"memories": [
{
"id": "...",
"contact_id": "aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee",
"persona_id": null,
"agent_number": "+15559876543",
"summary": "Customer prefers morning calls.",
"facts": {},
"entities": []
}
]
},
"errors": null
}
Was this page helpful?