Paste these into the Restaurant Order widget:
| Address (URL) | http://testorderingapi.nexfy.cloud/api/orders |
|---|---|
| Preparing orders | data.preparing.orderId |
| Ready orders | data.readyForPickup.orderId |
| Ticket numbers | always 4 digits — preparing 1000-1999, ready for pick-up 2000-9999 |
| Sign in | None |
An order moves from preparing to ready every 12 seconds. Force one now: POST http://testorderingapi.nexfy.cloud/api/orders/advance
{
"success": true,
"generatedAt": "2026-09-08T10:56:20+00:00",
"data": {
"preparing": [
{
"orderId": 1204,
"customerName": "Adam",
"items": 1,
"placedAt": "2026-09-08T10:54:47+00:00"
},
{
"orderId": 1205,
"customerName": "Karim",
"items": 5,
"placedAt": "2026-09-08T10:54:59+00:00"
},
{
"orderId": 1206,
"customerName": "Karim",
"items": 3,
"placedAt": "2026-09-08T10:55:11+00:00"
},
{
"orderId": 1207,
"customerName": "Noor",
"items": 3,
"placedAt": "2026-09-08T10:55:23+00:00"
},
{
"orderId": 1208,
"customerName": "Adam",
"items": 1,
"placedAt": "2026-09-08T10:55:35+00:00"
},
{
"orderId": 1209,
"customerName": "Sara",
"items": 4,
"placedAt": "2026-09-08T10:55:47+00:00"
},
{
"orderId": 1210,
"customerName": "Omar",
"items": 3,
"placedAt": "2026-09-08T10:55:59+00:00"
},
{
"orderId": 1211,
"customerName": "Lina",
"items": 5,
"placedAt": "2026-09-08T10:56:11+00:00"
}
],
"readyForPickup": [
{
"orderId": 2203,
"customerName": "Maya",
"items": 5,
"counter": "A",
"readyAt": "2026-09-08T10:56:11+00:00"
},
{
"orderId": 2202,
"customerName": "Lina",
"items": 4,
"counter": "B",
"readyAt": "2026-09-08T10:55:59+00:00"
},
{
"orderId": 2201,
"customerName": "Sara",
"items": 5,
"counter": "C",
"readyAt": "2026-09-08T10:55:47+00:00"
},
{
"orderId": 2200,
"customerName": "Noor",
"items": 2,
"counter": "A",
"readyAt": "2026-09-08T10:55:35+00:00"
},
{
"orderId": 2199,
"customerName": "Lina",
"items": 3,
"counter": "C",
"readyAt": "2026-09-08T10:55:23+00:00"
}
]
}
}