Skip to main content
GET
/
v1
/
agents
/
{agentId}
/
instances
List Instances
curl --request GET \
  --url https://app.opencomputer.dev/v1/agents/{agentId}/instances \
  --header 'X-API-Key: <api-key>'
{
  "instances": [
    {
      "id": "inst_98adcc7e",
      "agent_id": "my-hermes",
      "status": "running",
      "metadata": { "slack_user": "U123" },
      "created_at": "2026-04-09T10:30:00Z",
      "updated_at": "2026-04-09T10:30:00Z"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://opensandbox-feat-cf-dev-cutover.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

List all instances for an agent.
agentId
string
required
Agent ID
{
  "instances": [
    {
      "id": "inst_98adcc7e",
      "agent_id": "my-hermes",
      "status": "running",
      "metadata": { "slack_user": "U123" },
      "created_at": "2026-04-09T10:30:00Z",
      "updated_at": "2026-04-09T10:30:00Z"
    }
  ]
}