---
title: "Get Skill"
method: GET
path: "/v1/skills/{skill_id}"
tags: ["[beta] Anthropic Skills API"]
---

# Get Skill

`GET /v1/skills/{skill_id}`

Get a specific skill by ID from 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/skill_123?beta=true"       -H "Authorization: Bearer your-key"

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

Returns: Skill object

## Path parameters

- `skill_id` string, required

## Query parameters

- `custom_llm_provider` string, nullable

## Response `200`

Successful Response

- Skill — Represents a skill from the Anthropic Skills API
  - `id` string, required
  - `created_at` string, required
  - `display_title` string, nullable
  - `latest_version` string, nullable
  - `source` string, required
  - `type` string
  - `updated_at` string, required

## 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)
