Skip to main content
POST
/
v1
/
workspaces
/
{workspace_id}
/
zombies
/
{zombie_id}
/
memories
Store or upsert a memory entry
curl --request POST \
  --url https://api.usezombie.com/v1/workspaces/{workspace_id}/zombies/{zombie_id}/memories \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "key": "<string>",
  "content": "<string>",
  "category": "core"
}
'
{
  "key": "<string>",
  "category": "<string>",
  "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

Body

application/json
key
string
required
Maximum string length: 255
content
string
required
Maximum string length: 16384
category
string
default:core

Response

Created

key
string
category
string
request_id
string