List skills
curl --request GET \
--url https://{host}/v2/workspaces/slug:storage/webhooks/v1/skills \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://{host}/v2/workspaces/slug:storage/webhooks/v1/skills', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://{host}/v2/workspaces/slug:storage/webhooks/v1/skills"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"items": [
{
"id": "<string>",
"name": "<string>",
"display_name": "<string>",
"description": "<string>",
"instructions": "<string>",
"tools": [
{}
],
"user_id": "<string>",
"orgSlug": "<string>"
}
]
}{
"error": "<string>",
"code": "<string>",
"message": "<string>"
}{
"error": "<string>",
"code": "<string>",
"message": "<string>"
}Skills
List skills
GET
/
v1
/
skills
List skills
curl --request GET \
--url https://{host}/v2/workspaces/slug:storage/webhooks/v1/skills \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://{host}/v2/workspaces/slug:storage/webhooks/v1/skills', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://{host}/v2/workspaces/slug:storage/webhooks/v1/skills"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"items": [
{
"id": "<string>",
"name": "<string>",
"display_name": "<string>",
"description": "<string>",
"instructions": "<string>",
"tools": [
{}
],
"user_id": "<string>",
"orgSlug": "<string>"
}
]
}{
"error": "<string>",
"code": "<string>",
"message": "<string>"
}{
"error": "<string>",
"code": "<string>",
"message": "<string>"
}Authorizations
User session JWT or instance API key (iak_*). Send as Authorization: Bearer <token>.
Query Parameters
Page size (note: the param is pageSize, not limit).
Required range:
x >= 1Case-insensitive regex filter on name.
Response
Skills list. The implementation returns a flat envelope
{ items: [...] } with no pagination metadata.
Was this page helpful?