Skip to main content
GET
/
v1
/
memory
List All Memories
curl --request GET \
  --url https://api.bland.ai/v1/memory \
  --header 'authorization: <authorization>'
{
  "data": {
    "memories": [
      {
        "id": "12345678-1234-1234-1234-123456789012",
        "created_at": "2025-07-20T23:32:19.840Z",
        "user_id": "87654321-4321-4321-4321-210987654321",
        "name": "Customer Support",
        "memory_duration": null
      }
    ]
  },
  "errors": null
}

Documentation Index

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

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

Headers

authorization
string
required
Your API key for authentication.

Response

data
object
Response data containing memories array.
data.memories
array
Array of memory objects.
data.memories[].id
string
Unique identifier for the memory.
data.memories[].name
string
Name of the memory.
data.memories[].created_at
string
ISO timestamp when the memory was created.
data.memories[].user_id
string
User ID that owns this memory.
data.memories[].memory_duration
null
Memory duration setting (currently null).
{
  "data": {
    "memories": [
      {
        "id": "12345678-1234-1234-1234-123456789012",
        "created_at": "2025-07-20T23:32:19.840Z",
        "user_id": "87654321-4321-4321-4321-210987654321",
        "name": "Customer Support",
        "memory_duration": null
      }
    ]
  },
  "errors": null
}

Docs for agents: llms.txt