Skip to main content
GET
/
products
/
search
Search products (lightweight)
curl --request GET \
  --url https://admin.aeoliancms.com/api/v1/products/search \
  --header 'Authorization: Bearer <token>'
{
  "products": [
    {
      "id": "<string>",
      "name": "<string>",
      "slug": "<string>",
      "images": [
        {
          "url": "<string>",
          "alt": "<string>"
        }
      ],
      "tags": [
        "<string>"
      ],
      "price": "<string>",
      "compareAtPrice": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Response

200 - application/json

Search results

products
object[]