Skip to main content
The current version of the Aeolian Storefront API is V1 (Cirrus). This is a read-only storefront API for building custom frontends. Use it to fetch store data (products, collections, pages, menus) and process checkouts (shipping, taxes, payments). This is not an admin API. You cannot create, update, or delete resources. Contact us if you need admin API access.

Base URL

https://admin.aeoliancms.com/api/v1

Example request

curl https://admin.aeoliancms.com/api/v1/products \
  -H "Authorization: Bearer ak_your_api_key"
{
  "products": [
    {
      "id": "abc123",
      "storeId": "store_456",
      "name": "Example Product",
      "slug": "example-product",
      "status": "ACTIVE",
      "description": "Product description here",
      "metaTitle": null,
      "metaDescription": null,
      "images": [],
      "tags": [],
      "createdAt": "2025-01-15T10:30:00.000Z",
      "updatedAt": "2025-01-15T10:30:00.000Z",
      "options": [],
      "variants": [
        {
          "id": "var_789",
          "price": "29.99",
          "compareAtPrice": null,
          "stockQuantity": 10,
          "stockStatus": "IN_STOCK",
          "image": null,
          "attributes": {}
        }
      ],
      "collections": []
    }
  ]
}

Next steps