Skip to main content
GET
/
labels
/
note
Get note labels
curl --request GET \
  --url https://api.gospott.com/labels/note \
  --header 'x-api-key: <api-key>'
{
  "items": [
    {
      "id": "<string>",
      "name": "<string>",
      "colorHex": "<string>"
    }
  ],
  "pagination": {
    "totalItems": 123,
    "page": 123,
    "hasNextPage": 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

page
integer
default:0
Required range: 0 <= x <= 10000
pageSize
integer
default:20
Required range: 1 <= x <= 100

Response

Successfully retrieved note labels. Returns items array with pagination info.

items
object[]
required
pagination
object
required