---
title: "List all skills for the current project."
method: GET
path: "/skills"
tags: ["Skills"]
---

# List all skills for the current project.

`GET /skills`

## Query parameters

- `limit` integer
- `order` 'asc' | 'desc'
- `after` string — Identifier for the last item from the previous pagination request

## Response `200`

Success

- SkillListResource
  - `object` 'list', required — The type of object returned, must be `list`.
  - `data` SkillResource[], required — A list of items
    - `id` string, required — Unique identifier for the skill.
    - `object` 'skill', required — The object type, which is `skill`.
    - `name` string, required — Name of the skill.
    - `description` string, required — Description of the skill.
    - `created_at` integer, required — Unix timestamp (seconds) for when the skill was created.
    - `default_version` string, required — Default version for the skill.
    - `latest_version` string, required — Latest version for the skill.
  - `first_id` string, nullable, required — The ID of the first item in the list.
  - `last_id` string, nullable, required — The ID of the last item in the list.
  - `has_more` boolean, required — Whether there are more items available.

---

[API](https://skmtc.net/openai/apis/openai-api-3.md) · [All operations](https://skmtc.net/openai/apis/openai-api-3/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/openai/openai-api-3/versions/74cbcf73838f/schema)
