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

# List Agents

`GET /v1/agents`

List all workspace agents.

Access Control:
    Returns all agents within the current user's workspace (workspace isolation).
    All users in the same workspace can see all workspace agents.

    Note: User-level access control should be implemented via authorization
    layer (future ReBAC) rather than query parameters.

## Response `200`

Successful Response

- AgentResponse[]
  - `a2ui_enabled` boolean, nullable
  - `agent_type` string
  - `description` string, nullable
  - `events_config` object, nullable
  - `id` string, uuid, required
  - `instruction` string, nullable
  - `model_id` string, nullable
  - `name` string, required
  - `planning` boolean, nullable
  - `skills` object[], nullable
  - `status` string, required
  - `tools` ToolConfigYAML[], nullable
    - `name` string, required
    - `settings` ToolSettingsYAML — Tool settings configuration in YAML format.
      - `a2a_url` string, nullable
      - `allowed_tools` unknown[], nullable
        - unknown
      - `description_override` string, nullable
      - `disabled_methods` string[], nullable
      - `openapi_connection_id` string, nullable
      - `requires_user_confirmation` boolean, nullable
    - `type` 'code' | 'mcp' | 'agent' | 'openapi', required

## Changes

- **2026-04-29** `e1a530c0a2d5` — 1 breaking, 1 warning, 2 info
  - the `items/tools/anyOf[subschema #1]/items/settings/anyOf[subschema #1: ToolSettingsYAML]/allowed_tools/anyOf[subschema #1]/items/` response's property type changed from `string` to no type for status `200`
  - added the new `openapi` enum value to the `items/tools/anyOf[subschema #1]/items/type` response property for the response status `200`
  - added the optional property `items/skills` to the response with the `200` status
  - added the optional property `items/tools/anyOf[subschema #1]/items/settings/anyOf[subschema #1: ToolSettingsYAML]/openapi_connection_id` to the response with the `200` status
- **2026-03-30** `e9c153221160` — 2 breaking, 4 warning, 5 info
  - the `items/tools/anyOf[subschema #1]/items/` response's property type changed from no type to `object` for status `200`
  - removed the required property `items/slug` from the response with the `200` status
  - removed the optional property `items/is_catalog` from the response with the `200` status
  - removed the optional property `items/registry_item_id` from the response with the `200` status
  - …7 more

[Change history](https://skmtc.dev/agentarea/apis/agentarea-api/changes/v1/agents/get.md)

---

[API](https://skmtc.dev/agentarea/apis/agentarea-api.md) · [All operations](https://skmtc.dev/agentarea/apis/agentarea-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/agentarea/agentarea-api/revisions/043c77dd6269/schema)
