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 Version changed

api/beta/skills/versions/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+12added
Lines−12removed
From line 14 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 14, old and new numbered
/
lines
from line 14
1414 
1515- `version: string`
1616 
17 Version identifier for the skill.
17 Identifies the skill version by its version ID.
1818 
19 Each version is identified by a Unix epoch timestamp (e.g., "1759178010641129").
19 Requests carrying the `skills-2025-10-02` beta header address versions by their Unix epoch timestamp instead (e.g., "1759178010641129").
2020 
2121## Headers
2222 
from line 112
112112 
113113## Returns
114114 
115- `id: string`
115- `BetaDeletedSkillVersion object`
116116 
117 Version identifier for the skill.
117 - `id: string`
118118 
119 Each version is identified by a Unix epoch timestamp (e.g., "1759178010641129").
119 Unique identifier for this Skill Version. The id addresses the version in
120 paths and pins it in references.
120121 
121- `type: string`
122 - `type: "skill_version_deleted"`
122123 
123 Deleted object type.
124 Deleted object type.
124125 
125 For Skill Versions, this is always `"skill_version_deleted"`.
126 For Skill Versions, this is always `"skill_version_deleted"`.
126127 
127 default: skill_version_deleted
128 default: skill_version_deleted
128129 
129130## Example
130131 
from line 133
132133curl https://api.anthropic.com/v1/skills/$SKILL_ID/versions/$VERSION \
133134 -X DELETE \
134135 -H 'anthropic-version: 2023-06-01' \
135 -H 'anthropic-beta: skills-2025-10-02' \
136136 -H "X-Api-Key: $ANTHROPIC_API_KEY"
137137```
138138 
from line 140
140140 
141141```json
142142{
143 "id": "1759178010641129",
144 "type": "type"
143 "id": "id",
144 "type": "skill_version_deleted"
145145}
146146```
147147