Skip to main content
POST
/
agents
/
{agent_id}
/
link
Link claimed agent to authenticated user
curl --request POST \
  --url https://api.mnemom.ai/v1/agents/{agent_id}/link \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "hash_proof": "<string>"
}
'
{
  "linked": true,
  "agent_id": "<string>",
  "user_id": "<string>"
}

Authorizations

Authorization
string
header
required

Supabase JWT token in Authorization: Bearer header

Path Parameters

agent_id
string
required

Agent identifier (e.g. smolt-abc123)

Body

application/json
hash_proof
string
required

Response

Agent linked

linked
boolean
agent_id
string
user_id
string