exchange
List standing orders
exchange
- GETRetrieve a swap configuration
- DELDelete a swap configuration
- PATCHUpdate a swap configuration
- GETList standing orders
- POSTCreate a standing order
- GETGet order book
- POSTConvert an amount from one currency to another
- GETGet rate
- DELDelete a rate
- PATCHUpdate a rate
- PATCHRemove contact from a market maker
- GETList rates
- POSTCreate a rate
- GETList supported rates
- GETList market makers
- POSTCreate a market maker
- GETList swaps
- POSTMake a swap
- GETRetrieve an order
- GETList orders
- POSTCreate an order
- GETList swap configuration
- POSTCreate a swap configuration
- PUTCancel an order
- GETGet swap rate
- POSTIncrease order book liquidity
- GETList currencies
- GETFetch current market prices
- GETRetrieve list of orders created from a standing order
- GETRetrieve market maker details for current account
- GETRetrieve a market maker
- PATCHUpdate a market maker
- GETGet swap
- PATCHAdd contact to a market maker
- GETRetrieve a standing order
- DELDelete a standing order
- PATCHUpdate a standing order
payouts
- POSTRetry failed but retryable transfer
- DELDelete transfers
- POSTAdd transfers
- GETList bulk payouts
- POSTInitiate a bulk transfer
- POSTcancel bulk transfer
- GETGet payout details
- GETGenerate a payout receipt
- GETGet charge for a payout
- GETList payouts
- POSTInitiate a payout
- GETGet bulk payout details
- POSTExecute bulk transfer
payment-lifecycle
- POSTCancel a running payment session
- GETGet merchant profile
- PATCHUpdate merchant profile
- GETGet a payment link
- PATCHUpdate a payment link
- GETExport payment details
- POSTAuthorize a captured payment session
- GETGet encryption key
- GETGet payment stats
- POSTRetry the processing of a pending outgoing payment
- GETGet a hosted payment session
- GETList payment links
- POSTCreate a payment link
- GETGet a running payment session
- POSTCapture a payment session
- PATCHUpdate a pending payment session
- POSTInitiate a payment refund
- PATCHGet merchant profile
- GETGet payment details
- GETGet payment details
- POSTInitialize a payment session
exchange
List standing orders
GET
/
exchange
/
exchange
/
standing-orders
{
"data": [
{
"archived": false,
"created_at": "2023-12-23T17:55:42.911",
"entity": {
"id": "6ebe0a0f-bb8f-49be-80ea-c6b72c348fea",
"type": "business"
},
"id": "7da75a46-a1bc-11ee-9a32-560f156a658b",
"low_watermark_qty": 1,
"min_qty": null,
"qty": 3,
"strict": false,
"symbol": "USD-NGN",
"type": "buy",
"updated_at": "2023-12-23T17:55:42.911"
}
],
"pagination": {
"after": "b101f718-d133-450c-a572-c281c7341803",
"before": null,
"limit": 15
}
}
Query Parameters
Before Cursor
After Cursor
Limit
Available options:
buy
, sell
Response
200 - application/json
Standing Order List
Response schema for multiple standing orders
Standing order list
An order
Order is archived or not
Creation timestamp
Standing order ID
Minimum quantity level to inform market maker, in base currency
Minimum quantity to be traded at a go, in base currency
StandingOrder quantity, denominated in the base currency
Should always open orders == qty or not
Currency pair
StandingOrder type
Available options:
sell
, buy
Update timestamp
{
"data": [
{
"archived": false,
"created_at": "2023-12-23T17:55:42.911",
"entity": {
"id": "6ebe0a0f-bb8f-49be-80ea-c6b72c348fea",
"type": "business"
},
"id": "7da75a46-a1bc-11ee-9a32-560f156a658b",
"low_watermark_qty": 1,
"min_qty": null,
"qty": 3,
"strict": false,
"symbol": "USD-NGN",
"type": "buy",
"updated_at": "2023-12-23T17:55:42.911"
}
],
"pagination": {
"after": "b101f718-d133-450c-a572-c281c7341803",
"before": null,
"limit": 15
}
}