Endpoint reference
Galleries
Image galleries the merchant published (lookbooks, shop photos). Fetch one with galleries/{slug}.
Authorization
http AuthorizationBearer <token>
Use a Sanctum bearer token.
In: header
Header Parameters
X-Client-Key*string
Your store API key (Dashboard → Settings → API keys). pk_live_… public keys are for browser code and only work from an origin on the key's allowlist; sk_live_… private keys are for servers and native apps and need no Origin.
Response Body
application/json
application/json
curl -X GET "https://example.com/store/galleries" \ -H "X-Client-Key: {{clientKey}}"{ "status": "success", "message": "Store galleries retrieved", "data": [], "meta": "string"}A gallery by slug with its images (url, alt, caption).
Authorization
http AuthorizationBearer <token>
Use a Sanctum bearer token.
In: header
Path Parameters
slug*string
Header Parameters
X-Client-Key*string
Your store API key (Dashboard → Settings → API keys). pk_live_… public keys are for browser code and only work from an origin on the key's allowlist; sk_live_… private keys are for servers and native apps and need no Origin.
Response Body
application/json
application/json
curl -X GET "https://example.com/store/galleries/string" \ -H "X-Client-Key: {{clientKey}}"{ "status": "success", "message": "Store gallery retrieved", "data": [], "meta": "string"}