---
title: "List agent personas"
method: GET
path: "/api/v0/agent/personas"
tags: ["Agent Personas"]
---

# List agent personas

`GET /api/v0/agent/personas`

List all agent personas for the current user.

## Query parameters

- `limit` integer
- `offset` integer

## Response `200`

Successful Response

- AgentPersonaListResponse — Response for listing agent personas.
  - `personas` AgentPersonaGetResponse[], required — The list of agent personas.
    - `id` string, uuid, required — The ID of the persona.
    - `name` string, required — The name of the persona.
    - `description` string, required — The description of the persona.
    - `prompt` string, required — The system prompt for the persona.
    - `builtin_tool_ids` string[] — Built-in tool IDs assigned to this persona.
    - `builtin_tool_configs` object — Per-builtin config keyed by tool id. Only configurable builtins (currently invoke_persona) carry config; the dict is sparse.
    - `custom_tool_ids` string[] — Custom tool UUIDs assigned to this persona.
    - `knowledge_base_ids` string[] — Knowledge base UUIDs assigned to this persona.
    - `skill_ids` string[] — Skill UUIDs preloaded by this persona — instruction documents the agent can read on demand via the read_skill tool.
    - `created_at` string, date-time, required — When the persona was created.
    - `updated_at` string, date-time, required — When the persona was last updated.
  - `pagination` PaginationMetadata, required
    - `total` integer, required — The total number of items matching the query.
    - `limit` integer, required — The maximum number of items per page.
    - `offset` integer, required — The number of items skipped.
    - `has_more` boolean, required — Whether there are more items available.

## Other responses

- `422` — Validation Error

---

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