Catalog

Read a skill or plugin page

GET/api/v1/skills/{slug}

Retrieve an active catalog item by slug or id.

Base URLhttps://llm-skills.com
AuthenticationBearer token
Access

API access included in your plan.

Path params

slugrequired
string

Public slug or skill id.

Example: code-review

Headers

Authorizationrequired
string

Bearer header containing an active API key.

Example: Bearer llms_api_keyConstraints: Create it from Profile > API keys. Keep it server side.

Request examples

cURL
curl "https://llm-skills.com/api/v1/skills/code-review"
  -H "Authorization: Bearer llms_api_key"

Responses and errors

200SuccessNormalized item.
JSON
{
  "data": { "id": "skill_id", "slug": "code-review" }
}
401Missing or invalid keyAuthorization header missing, malformed or revoked key.
JSON
{
  "error": "Invalid or revoked API key"
}
403Unauthorized accessThe current plan or permissions do not allow this route.
JSON
{
  "error": "API access is available with a plan that includes API access"
}