Skip to content
For the complete documentation index, see llms.txt. Markdown versions of documentation pages are available by appending .md to the page URL.
Primary navigation

Versions

Create Skill Version
POST/skills/{skill_id}/versions
Delete Skill Version
DELETE/skills/{skill_id}/versions/{version}
List Skill Versions
GET/skills/{skill_id}/versions
Get Skill Version
GET/skills/{skill_id}/versions/{version}
ModelsExpand Collapse
DeletedSkillVersion object { id, deleted, object, version }
id: string
deleted: boolean
object: "skill.version.deleted"
version: string

The deleted skill version.

SkillVersion object { id, created_at, description, 4 more }
id: string

Unique identifier for the skill version.

created_at: number

Unix timestamp (seconds) for when the version was created.

formatunixtime
description: string

Description of the skill version.

name: string

Name of the skill version.

object: "skill.version"

The object type, which is skill.version.

skill_id: string

Identifier of the skill for this version.

version: string

Version number for this skill.

SkillVersionList object { data, first_id, has_more, 2 more }
data: array of SkillVersion { id, created_at, description, 4 more }

A list of items

id: string

Unique identifier for the skill version.

created_at: number

Unix timestamp (seconds) for when the version was created.

formatunixtime
description: string

Description of the skill version.

name: string

Name of the skill version.

object: "skill.version"

The object type, which is skill.version.

skill_id: string

Identifier of the skill for this version.

version: string

Version number for this skill.

first_id: string or null

The ID of the first item in the list.

has_more: boolean

Whether there are more items available.

last_id: string or null

The ID of the last item in the list.

object: "list"

The type of object returned, must be list.

VersionsContent

Get Skill Version Content
GET/skills/{skill_id}/versions/{version}/content