---
title: "List agents"
method: GET
path: "/agents"
tags: ["Agents"]
---

# List agents

`GET /agents`

Lists workspace agents. Requires the agents:read scope. Filter with status=active|paused|archived|all (default active).

## Query parameters

- `status` 'active' | 'paused' | 'archived' | 'all' — Agent status filter.

## Response `200`

Workspace agents.

- AgentListResponse — Agent list response.
  - `data` object, required — Agent list data.
    - `items` Agent[], required — Agents.
      - `object` 'agent', required — Always "agent".
      - `id` string, required — Agent workspace membership identifier.
      - `display_name` string, required — Agent display name.
      - `role_name` string, nullable, required — Optional role label.
      - `model_id` string, required — Model identifier the agent runs on.
      - `response_scope` 'workspace' | 'personal', required — Whether the agent responds workspace-wide or only to its creator.
      - `status` 'active' | 'paused' | 'archived', required — Derived lifecycle status over activation and archival.
      - `is_workspace_agent` boolean, required — Whether this is the workspace's built-in agent.
      - `avatar_url` string, nullable, required — Avatar URL, or null when unset.
      - `created_by` object, nullable, required — The member who created the agent.
        - `id` string, required — Creator workspace membership identifier.
        - `display_name` string, nullable, required — Creator display name.
      - `created_at` string, date-time, required — Creation timestamp.
      - `updated_at` string, date-time, required — Last update timestamp.

## Other responses

- `400` — Bad request.
- `401` — Missing or invalid API key.
- `403` — Forbidden.
- `404` — Not found.
- `409` — Conflict.
- `429` — Rate limit or quota exceeded.
- `500` — Internal server error.

---

[API](https://skmtc.net/ando/apis/ando-public-api.md) · [All operations](https://skmtc.net/ando/apis/ando-public-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/ando/ando-public-api/revisions/0a94056fba48/schema)
