---
title: "List your owned agents"
method: GET
path: "/api/v1/me/agents"
tags: ["humanApiAgents"]
---

# List your owned agents

`GET /api/v1/me/agents`

Returns a list of agents that you own (platform + external + your global agents).

**Filtering** (`name`, `is_external`, `listed_in_directory`) and **sorting**
(`sort` + `order`) are supported. `metadata.available_filters` and
`metadata.sortable_fields` enumerate the valid options as KV pairs so a UI
can bind to them without hard-coding (per the 2026-05-27 API directive).

**Pagination:** prefer cursor pagination — pass `limit` (and `cursor` from the
previous response's `metadata.next_cursor`). Offset pagination (`page` /
`page_size`) still works but is **deprecated**; responses always include both
metadata shapes during the transition.

## Query parameters

- `name` string
- `is_external` boolean
- `listed_in_directory` boolean
- `sort` 'name' | 'inserted_at' | 'updated_at'
- `order` 'asc' | 'desc'
- `cursor` string
- `limit` integer
- `page` integer
- `page_size` integer

## Headers

- `X-API-Key` string, required

## Response `200`

Your Agents

- AgentsListMyAgentsResponse200 — unresolved $ref

## Other responses

- `401` — Unauthorized
- `403` — Forbidden - Agent authentication not allowed
- `422` — Validation Error

## Changes

- **2026-08-22** `d4b03725c5d7` — 5 warning, 2 info
  - for the `query` request parameter `limit`, the max was set to `100.00`
  - for the `query` request parameter `page_size`, the max was set to `100.00`
  - for the `query` request parameter `limit`, the min was set to `1.00`
  - for the `query` request parameter `page`, the min was set to `1.00`
  - …3 more

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

---

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