Sweep 22 Sep 2026 · 17:19Z Build v2.1.280 501 read Stable v2.1.267 Latest v2.1.280 Next v2.1.280 Feeds RSS JSON llms.txt Unofficial
One change · api

Delete Skill changed

api/beta/skills/delete

Nearest release: v2.1.251, published 2 hours before this site recorded the change. Shown because the two are within 24 hours of each other. Nothing here says the release caused the edit.

Recorded here
Lines+10added
Lines−9removed
From line 106 where the diff opens
First seen 14 Aug 2026 this site's first read of the page
Recorded edits9to this page, all time

The whole hunk

from line 106, old and new numbered
/
lines
from line 106
106106 
107107## Returns
108108 
109- `id: string`
109- `BetaDeletedSkill object`
110110 
111 Unique identifier for the skill.
111 - `id: string`
112112 
113 The format and length of IDs may change over time.
113 Unique identifier for the skill.
114114 
115- `type: string`
115 The format and length of IDs may change over time.
116116 
117 Deleted object type.
117 - `type: "skill_deleted"`
118118 
119 For Skills, this is always `"skill_deleted"`.
119 Deleted object type.
120120 
121 default: skill_deleted
121 For Skills, this is always `"skill_deleted"`.
122122 
123 default: skill_deleted
124 
123125## Example
124126 
125127```bash
from line 128
126128curl https://api.anthropic.com/v1/skills/$SKILL_ID \
127129 -X DELETE \
128130 -H 'anthropic-version: 2023-06-01' \
129 -H 'anthropic-beta: skills-2025-10-02' \
130131 -H "X-Api-Key: $ANTHROPIC_API_KEY"
131132```
132133 
from line 136
135136```json
136137{
137138 "id": "skill_01JAbcdefghijklmnopqrstuvw",
138 "type": "type"
139 "type": "skill_deleted"
139140}
140141```
141142