delete
api/skills/delete
Nearest release: v2.1.238, published under an hour after this site recorded the change. Shown because the two are within 24 hours of each other. Nothing here says the release caused the edit.
api/skills/delete New page · 54 lines, new page
## Delete Skill ### Path Parameters ### Returns ### Example #### Response
A whole new page. There's nothing to diff it against, so here is what it says.
---
title: Delete Skill
url: https://platform.claude.com/docs/en/api/skills/delete
---
## Delete Skill
**delete** `/v1/skills/{skill_id}`
Delete Skill
### Path Parameters
- `skill_id: string`
Unique identifier for the skill.
The format and length of IDs may change over time.
### Returns
- `DeletedSkill object { id, type }`
- `id: string`
Unique identifier for the skill.
The format and length of IDs may change over time.
- `type: "skill_deleted"`
Deleted object type.
For Skills, this is always `"skill_deleted"`.
- `"skill_deleted"`
### Example
```http
curl https://api.anthropic.com/v1/skills/$SKILL_ID \
-X DELETE \
-H 'anthropic-version: 2023-06-01' \
-H "X-Api-Key: $ANTHROPIC_API_KEY"
```
#### Response
```json
{
"id": "skill_01JAbcdefghijklmnopqrstuvw",
"type": "skill_deleted"
}
```