List Skill Versions
/v1/skills/{skill_id}/versions?beta=true
List Skill Versions
Path Parameters
skill_id: string
Unique identifier for the skill.
The format and length of IDs may change over time.
Query Parameters
limit: optional number
Number of items to return per page.
Defaults to 20. Ranges from 1 to 1000.
page: optional string
Optionally set to the next_page token from the previous response.
Header Parameters
Returns
has_more: boolean
Indicates if there are more results in the requested page direction.
next_page: string
Token to provide in as page in the subsequent request to retrieve the next page of data.
List Skill Versions
cURL
curl https://api.anthropic.com/v1/skills/$SKILL_ID/versions?beta=true \
-H "X-Api-Key: $ANTHROPIC_API_KEY"{
"data": [
{
"id": "skillver_01JAbcdefghijklmnopqrstuvw",
"created_at": "2024-10-30T23:58:27.427722Z",
"description": "A custom skill for doing something useful",
"directory": "my-skill",
"name": "my-skill",
"skill_id": "skill_01JAbcdefghijklmnopqrstuvw",
"type": "type",
"version": "1759178010641129"
}
],
"has_more": true,
"next_page": "page_MjAyNS0wNS0xNFQwMDowMDowMFo="
}Returns Examples
{
"data": [
{
"id": "skillver_01JAbcdefghijklmnopqrstuvw",
"created_at": "2024-10-30T23:58:27.427722Z",
"description": "A custom skill for doing something useful",
"directory": "my-skill",
"name": "my-skill",
"skill_id": "skill_01JAbcdefghijklmnopqrstuvw",
"type": "type",
"version": "1759178010641129"
}
],
"has_more": true,
"next_page": "page_MjAyNS0wNS0xNFQwMDowMDowMFo="
}