Ecommerce API — Authentication
The Ecommerce API uses bearer token authentication. Pass your Marqo
management API key in the Authorization header on every request to a protected
resource:
Authorization: Bearer <YOUR_API_KEY>
curl https://ecom.marqo-ep.ai/api/v1/indexes \
-H "Authorization: Bearer $MARQO_API_KEY"
- Treat the API key as a secret — never commit it or put it in a URL/query string.
- The Stoplight reference "Security" section is the authoritative description of the auth scheme; verify scopes and any per-endpoint requirements there.
Add key-issuance / rotation guidance here once documented in the owning repo.