Get Skill
beta.skills.retrieve(strskill_id, SkillRetrieveParams**kwargs) -> SkillRetrieveResponse
/v1/skills/{skill_id}?beta=true
Get Skill
Parameters
skill_id: str
Unique identifier for the skill.
The format and length of IDs may change over time.
Returns
Get Skill
Python
from anthropic import Anthropic
client = Anthropic(
api_key="my-anthropic-api-key",
)
skill = client.beta.skills.retrieve(
skill_id="skill_id",
)
print(skill.id){
"id": "skill_01JAbcdefghijklmnopqrstuvw",
"created_at": "2024-10-30T23:58:27.427722Z",
"display_title": "My Custom Skill",
"latest_version": "1759178010641129",
"source": "custom",
"type": "type",
"updated_at": "2024-10-30T23:58:27.427722Z"
}Returns Examples
{
"id": "skill_01JAbcdefghijklmnopqrstuvw",
"created_at": "2024-10-30T23:58:27.427722Z",
"display_title": "My Custom Skill",
"latest_version": "1759178010641129",
"source": "custom",
"type": "type",
"updated_at": "2024-10-30T23:58:27.427722Z"
}