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

# List organization agents

`GET /agents/`

Retrieve all agents for the authenticated organization.

    Returns a paginated list of agents with basic information including:
    - Agent ID and name
    - Agent type (inbound/outbound)
    - Active status
    - AI provider information
    - First message configuration
    - Created/updated timestamps

    Filtering and pagination:
    - Optional filter by agent type (inbound or outbound)
    - Sorted by newest agent first (created_at DESC)
    - Default limit: 50 agents per page (max 100)
    - Use offset for pagination

    Authentication:
    - API key with READ or READ_WRITE permission, or
    - OAuth access token granted the `agents:read` scope

## Query parameters

- `agent_type` string, nullable — Filter agents by type (inbound, outbound or meta)
- `limit` integer — Maximum number of agents to return (max 100)
- `offset` integer — Number of agents to skip for pagination

## Response `200`

Successfully retrieved agents list

- object
  - `ok` boolean
  - `data` object[]
    - `id` string, uuid
    - `name` string
    - `agent_type` string
    - `agent_type_display_name` string
    - `is_active` boolean
    - `ai_provider` string, nullable
    - `ai_provider_display_name` string, nullable
    - `first_message` string, nullable
    - `disable_first_message_interruptions` boolean
    - `created_at` string, date-time
    - `updated_at` string, date-time
  - `meta` object
    - `limit` integer
    - `offset` integer
    - `total_items` integer

## Other responses

- `401` — Invalid or missing API key
- `403` — Insufficient permissions

---

[API](https://skmtc.net/yourang/apis/yourang-ai-external-api-v1.md) · [All operations](https://skmtc.net/yourang/apis/yourang-ai-external-api-v1/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/yourang/yourang-ai-external-api-v1/revisions/49680ee64400/schema)
