Skip to main content
GET
/
skills
List skills
curl --request GET \
  --url https://api.gospott.com/skills \
  --header 'x-api-key: <api-key>'
{
  "items": [
    {
      "id": "<string>",
      "name": "<string>",
      "colorHex": "<string>"
    }
  ],
  "pagination": {
    "cursor": "<string>",
    "hasMore": true
  }
}

Documentation Index

Fetch the complete documentation index at: https://api-docs.spott.io/llms.txt

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

Authorizations

x-api-key
string
header
required

API key for authentication. Get your API key from Settings → API Keys in your Spott dashboard.

Query Parameters

limit
integer
default:50
Required range: 1 <= x <= 100
cursor
string

Base64-encoded cursor for pagination. Use the cursor value from a previous response to fetch the next page. Omit for the first page.

searchQuery
string

Response

Successfully retrieved skills. Returns items array with pagination info containing cursor for the next page.

items
object[]
required
pagination
object
required