Returns skill metadata and the latest version number. The response structure is the same as Create Skill.
Prerequisites
Endpoint and authentication configured. For details, see Overview and authentication.
Endpoint
GET /skills/{skill_id}
Request example
curl "$AGENTSTUDIO_URL/skills/skill_xxx" \
-H "Authorization: Bearer $DASHSCOPE_API_KEY"skill = client.skills.retrieve("skill_xxx")
print(skill.name, skill.latest_version)Skill s = client.skills().retrieve("skill_xxx");
System.out.println(s.getName() + " " + s.getLatestVersion());Response example
{
"id": "skill_xxx",
"type": "skill",
"name": "pdf3.0",
"description": "Use this skill whenever the user wants to do anything with PDF files...",
"source": "customer",
"status": "active",
"latest_version": "1.1",
"created_at": "2026-06-16T07:56:03Z",
"updated_at": "2026-06-16T08:12:47Z",
"request_id": "xxx"
}
Response fields
|
Field |
Type |
Description |
|
|
string |
Skill ID, format: |
|
|
string |
Fixed value |
|
|
string |
Parsed from |
|
|
string |
Source: |
|
|
string |
Scan status: |
|
|
string |
Latest version number. When mounting to an agent, do not lock to |
|
|
string |
Creation / last update time, ISO 8601 |
|
|
string |
Unique identifier for this request |