---
title: "Read skill"
method: GET
path: "/skills/{slug}"
tags: ["Skills"]
---

# Read skill

`GET /skills/{slug}`

Read the full content of a legal skill by its slug. Returns markdown content, tags, and metadata.

## Path parameters

- `slug` string, required

## Response `200`

Skill details

- object
  - `slug` string — Unique skill identifier
  - `name` string — Skill name
  - `summary` string — Brief skill description
  - `content` string — Full skill content in markdown
  - `tags` string[] — Skill tags
  - `version` string — Skill version
  - `author_name` string — Skill author
  - `license` string — Skill license
  - `metadata` object — Custom metadata (custom skills only)
  - `bundle` union — Skill bundle metadata for root skills and companion file rows
    - object
      - `role` 'root', required
      - `files` object[], required
        - `slug` string, required
        - `path` string, required
        - `name` string, nullable
        - `content_type` string, nullable
    - object
      - `role` 'file', required
      - `root_slug` string, required
      - `path` string, required
      - `content_type` string, nullable
  - `source` 'curated' | 'custom' — Skill source (authenticated requests only)

## Other responses

- `400` — Missing slug parameter
- `404` — Skill not found
- `429` — Rate limit exceeded (anonymous users)

---

[API](https://skmtc.net/casemark/apis/case-dev-api.md) · [All operations](https://skmtc.net/casemark/apis/case-dev-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/casemark/case-dev-api/revisions/5b7e64e6d6f9/schema)
