Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.qoder.com/llms.txt

Use this file to discover all available pages before exploring further.

GET /v1/skills Retrieves the list of all skills under the current account with cursor-based pagination.

Headers

HeaderRequiredDescription
AuthorizationYesBearer $QODER_PAT

Query parameters

ParameterTypeRequiredDescription
limitintegerNoMaximum number of records per page
afterstringNoCursor pagination: return records after this ID

Example request

# List all skills
curl -X GET https://openapi.qoder.sh/api/v1/cloud/skills \
  -H "Authorization: Bearer $QODER_PAT"

# Paginate
curl -X GET "https://openapi.qoder.sh/api/v1/cloud/skills?limit=10" \
  -H "Authorization: Bearer $QODER_PAT"

# Page forward with a cursor
curl -X GET "https://openapi.qoder.sh/api/v1/cloud/skills?limit=10&after=skill_019e3bba474b73cfaf19eae9b5f5e66d" \
  -H "Authorization: Bearer $QODER_PAT"

Example response

HTTP 200 OK
{
  "data": [
    {
      "id": "skill_019e3bba474b73cfaf19eae9b5f5e66d",
      "type": "skill",
      "name": "test-skill-api-doc",
      "description": "A test skill for API documentation",
      "skill_type": "custom",
      "status": "active",
      "version": 1,
      "content_size": 309,
      "content_sha256": "f253cb7d35790025f85917c0c239422cff1de067d00278db8897c585a3f28d94",
      "metadata": {},
      "created_at": "2026-05-18T15:35:24.248164Z",
      "updated_at": "2026-05-18T15:35:24.248164Z"
    }
  ],
  "first_id": "skill_019e3bba474b73cfaf19eae9b5f5e66d",
  "last_id": "skill_019e3bba474b73cfaf19eae9b5f5e66d",
  "has_more": false
}

Pagination example (has_more = true)

{
  "data": [],
  "first_id": "skill_019e3bbb6a25768b9b50ca2f52aa4345",
  "last_id": "skill_019e3bbb6a25768b9b50ca2f52aa4345",
  "has_more": true
}

Empty list response

{
  "data": [],
  "first_id": null,
  "last_id": null,
  "has_more": false
}

Response fields

FieldTypeDescription
dataarrayArray of Skill objects
first_idstring | nullID of the first record on the current page
last_idstring | nullID of the last record on the current page (used as after for the next page)
has_morebooleanWhether more records are available; when true, use last_id as the next page’s after value

Errors

HTTPTypeTrigger
401TOKEN_INVALIDMissing or invalid authentication token
See Errors for the full error envelope.