Skip to main content
GET
/
styles
List styles
curl --request GET \
  --url http://localhost:3001/api/v1/styles \
  --header 'x-api-key: <api-key>'
{
  "data": [
    {
      "id": "7c1a9e02-3d4b-4f8a-9b2c-1e0d5a6f3b8c",
      "name": "Acme Brand",
      "url": "https://acme.com",
      "logoUrl": "https://cdn.example.com/styleguides/usr_8a2f3c/7c1a9e02/logo.png",
      "palette": [
        "#FF0066",
        "#1A1A2E",
        "#FFFFFF"
      ]
    }
  ],
  "nextCursor": null
}

Authorizations

x-api-key
string
header
required

Query Parameters

cursor
string

Opaque pagination cursor returned as nextCursor by a prior call.

limit
integer
default:20

Max items per page.

Required range: 1 <= x <= 50

Response

OK

data
object[]
required
nextCursor
string | null