Skip to main content
GET
/
v1
/
workspaces
/
{workspace_id}
/
zombies
/
{zombie_id}
/
memories
List or search memory entries for a zombie
curl --request GET \
  --url https://api.usezombie.com/v1/workspaces/{workspace_id}/zombies/{zombie_id}/memories \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "key": "<string>",
      "content": "<string>",
      "category": "<string>",
      "updated_at": 123
    }
  ],
  "total": 123,
  "request_id": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.usezombie.com/llms.txt

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

Authorizations

Authorization
string
header
required

Obtain a token via the CLI auth flow (POST /v1/auth/sessions) or GitHub OAuth

Path Parameters

workspace_id
string<uuid>
required
zombie_id
string<uuid>
required

Query Parameters

query
string

Fuzzy text search across key and content. When omitted, the endpoint lists most-recent entries.

category
string
limit
integer
default:100
Required range: 1 <= x <= 100

Response

OK

items
object[]
total
integer
request_id
string