Skill Versions

Inspect version history and snapshots for a skill.

Skill Versions object

Attributes

object

String

id

String

skill_id

String

store_id

String

store_version_id

String

version_number

Number

created_at

Date
{
"object": "skill.version"
}

List skill versions

Returns a paginated list of versions for a specific skill.

URL Parameters

skill_id

String

The unique identifier for the skill

Query Parameters

limit

NumberOptional

after

StringOptional

before

StringOptional

cursor

StringOptional

order

EnumOptional
GEThttp://api.metorial.com/skills/:skill_id/versions
curl -X GET "https://api.metorial.com/skills/ski_Rm4Mnheq2bfEPhBhP7SY/versions" \
-H "Authorization: Bearer metorial_sk_..."

Get skill version by ID

Retrieves a specific skill version by its ID.

URL Parameters

skill_id

String

The unique identifier for the skill

skill_version_id

String

The unique identifier for the skill_version

GEThttp://api.metorial.com/skills/:skill_id/versions/:skill_version_id
curl -X GET "https://api.metorial.com/skills/ski_Rm4Mnheq2bfEPhBhP7SY/versions/ski_Rm4Mnheq2bfEPhBhP7SY" \
-H "Authorization: Bearer metorial_sk_..."

Get skill version snapshot

Retrieves the store-backed snapshot for a specific skill version.

URL Parameters

skill_id

String

The unique identifier for the skill

skill_version_id

String

The unique identifier for the skill_version

GEThttp://api.metorial.com/skills/:skill_id/versions/:skill_version_id/snapshot
curl -X GET "https://api.metorial.com/skills/ski_Rm4Mnheq2bfEPhBhP7SY/versions/ski_Rm4Mnheq2bfEPhBhP7SY/snapshot" \
-H "Authorization: Bearer metorial_sk_..."