Catalog
Search skills and plugins
GET
/api/v1/skillsList active catalog items with search, filters and pagination.
Query params
qoptionalstring
Search in names and descriptions.
Example:seocategoryoptionalstring
Category slug.
Example:seotypeoptionalstring
Filter item type.
Values: skill, pluginlimitoptionalnumber
Results per page.
Constraints: Maximum 50.Headers
Authorizationrequiredstring
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"
-H "Authorization: Bearer llms_api_key"Responses and errors
200SuccessSkills and pagination.
JSON
{
"data": { "skills": [], "pagination": { "page": 1 } }
}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"
}