Retrieves a list of all orders. Supports pagination and filtering by companyId.
Final POS API (1.2.4)
Welcome to the Final POS Public API—your playground for crafting the checkout and kiosk flows you want. Create your API keys in Manage (Settings > API Keys) and send them as x-api-key on every request. Customer endpoints use dynamic DTO generation so they adapt to your custom tables in real time, while the rest of the controllers follow a stable, static contract for predictable integrations.
- Mock serverhttps://docs.finalpos.com/_mock/openapi/v1/api/orders
- Official APIhttps://api.finalpos.com/v1/api/orders
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.finalpos.com/_mock/openapi/v1/api/orders?skip=0&limit=0' \
-H 'x-api-key: YOUR_API_KEY_HERE'Successfully retrieved a list of orders
Timestamp when the Order was created.
Timestamp when the Order was last updated.
External ID associated with the Order when synced from external source. If present, it will set fromFinal to true.
When the order is parked, the stock will be reduced by this amount. If 0, the stock will not be reduced.
Summary of the Order.
Cart discount of the Order.
Cart fees of the Order.
POS data of the order.
Metadata associated with the Customer.
Notes associated with the Order.
Billing address associated with the Order.
Shipping address associated with the Order.
Line items associated with the Order.
Custom sales associated with the Order.
[ { "id": "o1p2q3r4s5t6u7v8w9x0y1z2", "createdAt": "2025-12-07T19:31:48.436+00:00", "updatedAt": "2025-12-07T19:35:48.436+00:00", "companyId": "o1p2q3r4s5t6u7v8w9x0y1z2", "currency": "USD", "receiptId": "o1p2q3r4s5t6u7v8w9x0y1z2", "status": "pending", "customerId": "o1p2q3r4s5t6u7v8w9x0y1z2", "source": "final", "sessionId": "o1p2q3r4s5t6u7v8w9x0y1z2", "balance": "1000.50", "externalId": "o1p2q3r4s5t6u7v8w9x0y1z2", "fromFinal": false, "customerNote": "Customer note", "parkReduceStock": "0", "parkExpiryDate": "never", "signature": "SGVsbG8gV29ybGQ=", "summary": { … }, "cartDiscount": { … }, "cartFees": [ … ], "paymentMethods": [ … ], "posData": { … }, "metadata": [ … ], "notes": [ … ], "billing": { … }, "shipping": { … }, "lineItems": [ … ], "customSales": [ … ], "refund": "string" } ]