Skip to main content
GET
/
collections
List collections
curl --request GET \
  --url https://admin.aeoliancms.com/api/v1/collections \
  --header 'Authorization: Bearer <token>'
{
  "collections": [
    {
      "id": "<string>",
      "name": "<string>",
      "slug": "<string>",
      "description": "<string>",
      "metaTitle": "<string>",
      "metaDescription": "<string>",
      "image": {
        "url": "<string>",
        "alt": "<string>"
      },
      "parent": "<string>",
      "products": [
        {
          "id": "<string>",
          "name": "<string>",
          "slug": "<string>",
          "images": [
            {
              "url": "<string>",
              "alt": "<string>"
            }
          ],
          "tags": [
            "<string>"
          ],
          "price": "<string>",
          "compareAtPrice": "<string>"
        }
      ],
      "breadcrumb": [
        {
          "id": "<string>",
          "name": "<string>",
          "slug": "<string>"
        }
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

API key in format ak_<48-hex-chars>

Response

200 - application/json

List of collections

collections
object[]