Forward API reference.
Description
Retrieves metadata for a single Skill version by version number, without content. Retrieve content with Download Skill Version Content.
Path
GET /api/v1/forward/skills/{id}/versions/{version}
Request headers
| Header | Required | Description |
|---|---|---|
Authorization | Yes | Bearer <PAT or SAT> |
Path parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
id | string | Yes | Skill ID. |
version | string | Yes | Version number. • Recommended: A 16-digit Unix microsecond timestamp such as 1759178010641129;• Compatibility: Legacy incremental counters such as "1" or "2" still resolve to the same version during migration.The literal latest is not supported and returns 400. Call Get a Skill, read latest_version, and use that value in the path. |
Example request
Example response
HTTP 200 OK
Response fields
The response is a Skill version object. See Legacy version-number compatibility for compatibility rules.
Errors
| HTTP | Type | Trigger |
|---|---|---|
| 400 | invalid_request_error | The version format is invalid, such as latest or a nonnumeric string. |
| 401 | authentication_error | The authentication token is missing or invalid. |
| 403 | permission_error | The caller cannot access the Skill. |
| 404 | not_found_error | The Skill or version does not exist. |
| 500/502/503 | api_error | Forward or a dependent service failed. |