Your API key for authentication.
Path Parameters
The unique identifier of the memory to retrieve.
Response
Detailed memory data organized by users.
Unique identifier for the memory.
ISO timestamp when the memory was created.
Array of user objects with their associated data.
data.users[].phone_number
The phone number associated with this memory entry.
ISO timestamp when this user was added to the memory.
Total number of calls with this phone number.
Custom metadata text associated with this phone number.
data.users[].last_call_at
ISO timestamp of the most recent call with this phone number, or null if no calls yet.
AI-generated summary of interactions with this phone number.
{
"data": {
"memory_id": "12345678-1234-1234-1234-123456789012",
"name": "Customer Support",
"created_at": "2025-07-20T23:32:19.840Z",
"users": [
{
"phone_number": "+12345678900",
"created_at": "2025-07-21T07:09:04.372Z",
"call_count": 0,
"metadata": "25 year old customer from New York",
"last_call_at": null,
"summary": "Previous call discussion was on the topic of startups"
}
]
},
"errors": null
}