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
  }
}

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
number
default:50

Number of skills to return per page (min: 1, max: 100, default: 50)

Required range: 1 <= x <= 100
searchQuery
string

Filter skills by name (case-insensitive partial match)

cursor
string

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

Response

200 - application/json

Skills retrieved successfully

items
object[]
required
pagination
object
required