Quickstart

Configure the first request

Validate authentication with a simple endpoint and a paginated result.

01

Call the catalog

Start with GET /api/v1/skills and a simple filter. This endpoint does not modify data.

Example
curl "https://llm-skills.com/api/v1/skills?q=seo&limit=3"
  -H "Authorization: Bearer llms_api_key"
See technical reference
02

Handle errors

Handle at least 401 and 403 statuses before adding the integration to a user-facing workflow.

03

Add pagination

Use page and limit to load results in batches. The current maximum limit is 50.

Continue