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

# List agent skills

`GET /api/v0/agent/skills`

List all skills owned by the current user.

## Query parameters

- `limit` integer
- `offset` integer

## Response `200`

Successful Response

- AgentSkillListResponse — Response for listing agent skills.
  - `skills` AgentSkillGetResponse[], required — The list of agent skills.
    - `id` string, uuid, required — The ID of the skill.
    - `name` string, required — The name of the skill.
    - `description` string, required — The description of the skill.
    - `body` string — Markdown body of the skill — what the agent reads via the read_skill builtin tool when a persona has preloaded it.
    - `created_at` string, date-time, required — When the skill was created.
    - `updated_at` string, date-time, required — When the skill 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)
