Skip to main content
GET
/
skills
/
{skill_id}
Get skill
import requests

url = "https://app.ubik-agent.com/api/v1/skills/{skill_id}"

headers = {"X-API-KEY": "<api-key>"}

response = requests.get(url, headers=headers)

print(response.text)
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "name": "<string>",
  "description": "<string>"
}

Authorizations

X-API-KEY
string
header
required

Headers

X-End-User-ID
string | null

Path Parameters

skill_id
string<uuid>
required

Response

Successful Response

id
string<uuid>
required

The unique identifier for the skill.

name
string
required

The name of the skill.

description
string | null

A brief description of what the skill does.