---
title: "List Skills"
method: GET
path: "/v1/skills"
tags: ["[beta] Anthropic Skills API"]
---

# List Skills

`GET /v1/skills`

List skills on Anthropic.

Requires `?beta=true` query parameter.

Model-based routing (for multi-account support):
- Pass model via header: `x-litellm-model: claude-account-1`
- Pass model via query: `?model=claude-account-1`
- Pass model via body: `{"model": "claude-account-1"}`

Example usage:
```bash
# Basic usage
curl "http://localhost:4000/v1/skills?beta=true&limit=10"       -H "Authorization: Bearer your-key"

# With model-based routing
curl "http://localhost:4000/v1/skills?beta=true&limit=10"       -H "Authorization: Bearer your-key"       -H "x-litellm-model: claude-account-1"
```

Returns: ListSkillsResponse with list of skills

## Query parameters

- `limit` integer, nullable
- `after_id` string, nullable
- `before_id` string, nullable
- `custom_llm_provider` string, nullable

## Response `200`

Successful Response

- ListSkillsResponse — Response from listing skills
  - `data` Skill[], required
    - `id` string, required
    - `created_at` string, required
    - `display_title` string, nullable
    - `latest_version` string, nullable
    - `source` string, required
    - `type` string
    - `updated_at` string, required
  - `next_page` string, nullable
  - `has_more` boolean

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/sea-lion/apis/litellm-api.md) · [All operations](https://skmtc.net/sea-lion/apis/litellm-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/sea-lion/litellm-api/revisions/1e929292ddd5/schema)
