GET /skills
https://api.voygr.tech/skills
Overview
Discovery for the structured path: every runnable skill with its manifest/run URLs. The concierge skill owns the three POST /calls structured intents.
Authentication
- API key in header
X-API-Key: Your customer API key (pk_live_...), sent on every request. Self-serve at https://api.voygr.tech/checkout.
Responses
200
Successful Response
application/json
Schema: array of object
Item fields
| Field | Type | Required | Description and constraints |
|---|---|---|---|
skill_id | string | required | |
title | string | required | |
description | string | optional | |
manifest_url | string | required | |
run_url | string | optional |
401
Missing or invalid X-API-Key.
application/json
X-API-Key header absent
{
"detail": {
"error": "API key required"
}
}X-API-Key doesn't resolve to an active key
{
"detail": {
"error": "invalid API key"
}
}On this page
