Skip to content

List available skills

GET /skills

https://api.voygr.tech/skills

Open in playground

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

FieldTypeRequiredDescription and constraints
skill_idstringrequired
titlestringrequired
descriptionstringoptional
manifest_urlstringrequired
run_urlstringoptional

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"
  }
}