Retrieves details for a bulk of orders that have been submitted within a given time range and optionally by order status or customer.
Security
sec0
Current status of an order. Can be one or many order statuses which are comma separated. Available order statuses can be found here: Order Status
Default:"inProgress,coinTransferred,declined"
- Mock serverhttps://docs.banxa.com/_mock/products/legacy-api/openapi/api/orders
- https://api.banxa.comhttps://api.banxa.com/api/orders
curl -i -X GET \
'https://docs.banxa.com/_mock/products/legacy-api/openapi/api/orders?start_date=2021-01-18&end_date=2021-01-19&status=inProgress%2CcoinTransferred%2Cdeclined&per_page=100&page=0&account_reference=string' \
-H 'Accept: application/json' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'X-Request-Id: string'Response
{ "data": { "orders": [ … ] }, "meta": { "current_page": 1, "from": 1, "last_page": 1, "per_page": 50, "to": 1, "total": 1 } }