Skip to content

Discover the storefront structured-settings contract

GET
/rest/v1/storefront-config

Returns a typed, sectioned map of backend-owned storefront settings. The non-boolean sibling of GET /rest/features: it carries parameter values (numbers, lists, strings) grouped into named sections rather than capability on/off flags. First section listing derives its values live from the storefront config (products_list_limit / pageLimitsArray() / products_list_max), so they track whatever the deployment configures with no rebuild. Read-only and global (not per-user/locale); no server-side enforcement (pure values).

Responses

Successful operation

application/json
JSON
{
  
"success": true,
  
"data": {
  
  
"listing": {
  
  
  
"perPageDefault": 36,
  
  
  
"perPageOptions": [
  
  
  
  
[
  
  
  
  
  
9,
  
  
  
  
  
18,
  
  
  
  
  
36,
  
  
  
  
  
72
  
  
  
  
]
  
  
  
],
  
  
  
"perPageMax": 72
  
  
}
  
}
}

Playground

Samples

Powered by VitePress OpenAPI