Skip to main content
GET
/
v1
/
skills
/
{skill_id}
!pip install vlmrun

from vlmrun.client import VLMRun

client = VLMRun(api_key="<VLMRUN_API_KEY>")

# Get skill by ID
skill = client.agent.skills.get(id="<skill-id>")
print(f"{skill.name} (v{skill.version}): {skill.description}")
{
  "id": "<string>",
  "name": "<string>",
  "description": "<string>",
  "skill_version": "latest",
  "skill_uri": "<string>",
  "is_public": false,
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z"
}
!pip install vlmrun

from vlmrun.client import VLMRun

client = VLMRun(api_key="<VLMRUN_API_KEY>")

# Get skill by ID
skill = client.agent.skills.get(id="<skill-id>")
print(f"{skill.name} (v{skill.version}): {skill.description}")

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

skill_id
string
required

Response

Successful Response

Skill information response.

id
string
required

Unique skill identifier

name
string
required

Name of the skill

description
string
required

Description of the skill

skill_version
string
default:latest

Version of the skill

skill_uri
string | null

GCS URI of the skill zip file

is_public
boolean
default:false

Whether the skill is publicly accessible

created_at
string<date-time> | null

Date and time when the skill was created

updated_at
string<date-time> | null

Date and time when the skill was updated