Skip to main content

Method

GET /v1/collections

Query Parameters

locale
string
Response locale (e.g. en, ro)
limit
integer
Items per page (default 50, max 100)
offset
integer
Number of items to skip (default 0)

Headers

Authorization
string
required
Bearer token (e.g. Authorization: Bearer YOUR_API_KEY)
curl "https://api.voyantcloud.com/v1/collections?locale=en&limit=20&offset=0" \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "data": [
    {
      "id": "col_123",
      "name": "Summer Picks"
    }
  ],
  "meta": {
    "total": 1,
    "limit": 20,
    "offset": 0,
    "hasMore": false
  }
}