Skip to main content
GET
/
v1
/
agents
List Agents
curl --request GET \
  --url https://app.opencomputer.dev/v1/agents \
  --header 'X-API-Key: <api-key>'
{
  "agents": [
    {
      "id": "my-hermes",
      "display_name": "my-hermes",
      "core": "hermes",
      "channels": ["telegram"],
      "packages": ["gbrain"],
      "secret_store": "agent:my-hermes",
      "config": null,
      "created_at": "2026-04-09T10:30:00Z",
      "updated_at": "2026-04-09T10:30:00Z"
    }
  ]
}
List all agents owned by the authenticated API key. CLI equivalent: oc agent list
{
  "agents": [
    {
      "id": "my-hermes",
      "display_name": "my-hermes",
      "core": "hermes",
      "channels": ["telegram"],
      "packages": ["gbrain"],
      "secret_store": "agent:my-hermes",
      "config": null,
      "created_at": "2026-04-09T10:30:00Z",
      "updated_at": "2026-04-09T10:30:00Z"
    }
  ]
}