Commerce
NeroWeb Pages and Settings
Use NeroWeb endpoints to sync web page and store settings into external systems.
NeroWebPagesSettings
NeroWeb pages and settings
| Method | Endpoint | Purpose |
|---|---|---|
| GET | /nerowebpages | List NeroWeb pages. |
| GET | /neroweb-settings | List NeroWeb store settings. |
/nerowebpages returns published or configured pages, while /neroweb-settings returns store configuration that is safe for API consumers.
true,
CURLOPT_HTTPHEADER => [
'Authorization: Bearer ' . $secretKey,
'Accept: application/json',
],
]);
$response = curl_exec($ch);
$httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
curl_close($ch);
echo $response;
{
"success": true,
"data": [
{
"id": 301,
"title": "Home",
"slug": "home",
"status": "published",
"updated_at": "2026-04-22T10:00:00Z"
},
{
"id": 302,
"title": "Menu",
"slug": "menu",
"status": "published"
}
]
}
true,
CURLOPT_HTTPHEADER => [
'Authorization: Bearer ' . $secretKey,
'Accept: application/json',
],
]);
$response = curl_exec($ch);
$httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
curl_close($ch);
echo $response;
{
"success": true,
"data": {
"store_name": "Demo Store",
"currency": "GBP",
"online_ordering_enabled": true,
"collection_enabled": true,
"delivery_enabled": false
}
}