Skip to main content
GET
/
collections
/
{id}
Get collection by ID
curl --request GET \
  --url https://admin.aeoliancms.com/api/v1/collections/{id} \
  --header 'Authorization: Bearer <token>'
{
  "collection": {
    "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>

Path Parameters

id
string
required

Response

Collection with products

collection
object