Skip to main content
GET
/
agents
List your agents
curl --request GET \
  --url https://api.mnemom.ai/v1/agents \
  --header 'Authorization: Bearer <token>'
{
  "agents": [
    {
      "id": "<string>",
      "agent_hash": "<string>",
      "user_id": "<string>",
      "email": "<string>",
      "claimed_at": "2023-11-07T05:31:56Z",
      "last_seen": "2023-11-07T05:31:56Z",
      "status": "active",
      "public": true,
      "aip_enforcement_mode": "observe",
      "billing_account_id": "<string>",
      "created_at": "2023-11-07T05:31:56Z"
    }
  ],
  "total": 123,
  "limit": 123,
  "offset": 123
}

Authorizations

Authorization
string
header
required

Supabase JWT token in Authorization: Bearer header

Query Parameters

limit
integer
default:50

Maximum number of agents to return (max 100)

Required range: x <= 100
offset
integer
default:0

Number of agents to skip for pagination

Response

Paginated list of agents

agents
object[]
total
integer

Total number of agents owned by the user

limit
integer
offset
integer