GET
/
v1
/
memory
/
{memory_id}
Get Memory Details
curl --request GET \
  --url https://api.bland.ai/v1/memory/{memory_id} \
  --header 'authorization: <authorization>'
{
  "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
}

Headers

authorization
string
required
Your API key for authentication.

Path Parameters

memory_id
string
required
The unique identifier of the memory to retrieve.

Response

data
object
Detailed memory data organized by users.
data.memory_id
string
Unique identifier for the memory.
data.name
string
Name of the memory.
data.created_at
string
ISO timestamp when the memory was created.
data.users
array
Array of user objects with their associated data.
data.users[].phone_number
string
The phone number associated with this memory entry.
data.users[].created_at
string
ISO timestamp when this user was added to the memory.
data.users[].call_count
number
Total number of calls with this phone number.
data.users[].metadata
string
Custom metadata text associated with this phone number.
data.users[].last_call_at
string|null
ISO timestamp of the most recent call with this phone number, or null if no calls yet.
data.users[].summary
string
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
}