DELETE
/
v1
/
skills
/
{skill_id}
cURL
curl -X DELETE "https://api.anthropic.com/v1/skills/skill_01AbCdEfGhIjKlMnOpQrStUv" \
     -H "x-api-key: $ANTHROPIC_API_KEY" \
     -H "anthropic-version: 2023-06-01" \
     -H "anthropic-beta: skills-2025-10-02"
{
  "id": "skill_01JAbcdefghijklmnopqrstuvw",
  "type": "skill_deleted"
}

Headers

anthropic-beta
string[]

Optional header to specify the beta version(s) you want to use.

To use multiple betas, use a comma separated list like beta1,beta2 or specify the header multiple times for each beta.

anthropic-version
string
required

The version of the Claude API you want to use.

Read more about versioning and our version history here.

x-api-key
string
required

Your unique API key for authentication.

This key is required in the header of all API requests, to authenticate your account and access Anthropic's services. Get your API key through the Console. Each key is scoped to a Workspace.

Path Parameters

skill_id
string
required

Unique identifier for the skill.

The format and length of IDs may change over time.

Response

Successful Response

id
string
required

Unique identifier for the skill.

The format and length of IDs may change over time.

Examples:

"skill_01JAbcdefghijklmnopqrstuvw"

type
string
default:skill_deleted
required

Deleted object type.

For Skills, this is always "skill_deleted".