Skip to main content
POST
/
agents
/
{agent_id}
/
claim
Claim agent with hash proof
curl --request POST \
  --url https://api.mnemom.ai/v1/agents/{agent_id}/claim \
  --header 'Content-Type: application/json' \
  --data '
{
  "hash_proof": "<string>",
  "email": "jsmith@example.com"
}
'
{
  "claimed": true,
  "agent_id": "<string>",
  "claimed_at": "2023-11-07T05:31:56Z"
}

Path Parameters

agent_id
string
required

Agent identifier (e.g. smolt-abc123)

Body

application/json
hash_proof
string
required

SHA-256 hash of agent API key

email
string<email>

Response

Agent claimed

claimed
boolean
agent_id
string
claimed_at
string<date-time>