Skip to main content
GET
/
orgs
/
{org_id}
/
agents
List agents in organization
curl --request GET \
  --url https://api.mnemom.ai/v1/orgs/{org_id}/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"
    }
  ]
}

Authorizations

Authorization
string
header
required

Supabase JWT token in Authorization: Bearer header

Path Parameters

org_id
string
required

Organization identifier (e.g. org-abc12345)

Query Parameters

mine
boolean
default:false

Filter to only current user's agents

Response

Organization agents

agents
object[]