---
title: "List skills with optional filters"
method: GET
path: "/api/skills"
tags: ["Skills"]
---

# List skills with optional filters

`GET /api/skills`

Returns skills WITHOUT the heavy `content` (full SKILL.md) by default — list views never render it. Pass `fields=full` to include `content` (e.g. for SDK consumers that read it from the list).

## Query parameters

- `type` string
- `scope` string
- `agentId` string
- `enabled` string
- `search` string
- `fields` 'full' | 'slim'

## Response `200`

Skill list

- object
  - `skills` Skill[], required
    - `id` string, required
    - `name` string, required
    - `description` string, required
    - `content` string, required
    - `type` 'remote' | 'personal', required
    - `scope` 'global' | 'swarm' | 'agent', required
    - `ownerAgentId` string, nullable, required
    - `sourceUrl` string, nullable, required
    - `sourceRepo` string, nullable, required
    - `sourcePath` string, nullable, required
    - `sourceBranch` string, required
    - `sourceHash` string, nullable, required
    - `isComplex` boolean, required
    - `allowedTools` string, nullable, required
    - `model` string, nullable, required
    - `effort` string, nullable, required
    - `context` string, nullable, required
    - `agent` string, nullable, required
    - `disableModelInvocation` boolean, required
    - `userInvocable` boolean, required
    - `version` number, required
    - `isEnabled` boolean, required
    - `systemDefault` boolean, required
    - `createdAt` string, required
    - `lastUpdatedAt` string, required
    - `lastFetchedAt` string, nullable, required
  - `total` number, required

---

[API](https://skmtc.net/desplega-ai/apis/agent-swarm-api.md) · [All operations](https://skmtc.net/desplega-ai/apis/agent-swarm-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/desplega-ai/agent-swarm-api/revisions/e2028c1ef6f5/schema)
