Create a new order (DEPOSIT_FIAT, WITHDRAW_FIAT, DEPOSIT_CRYPTO, WITHDRAW_CRYPTO, BUY_CRYPTO, SELL_CRYPTO, FIAT_TO_CRYPTO, CRYPTO_TO_FIAT)
Request
Add parameter in header x-signature
Example:x-signature: ********************
or
Body Params application/json
{
"merchantId": "string",
"partnerOrderId": "string",
"orderType": "DEPOSIT_FIAT",
"source": {
"type": "INTERNAL_ACCOUNT",
"details": {
"currency": "USDT",
"accountId": "string"
}
},
"destination": {
"payeeId": "string"
},
"collectionInstrumentSelect": {
"instrumentId": "inst_usd_va_001"
},
"amount": {
"value": "string",
"currency": "USDT"
},
"quoteId": "string",
"slippageTolerance": 0,
"paymentOptions": {
"feeBearer": "OUR",
"purpose": "string",
"remittanceNote": "string",
"onBehalf": {
"entityName": "string"
},
"custom": {
"property1": "string",
"property2": "string"
},
"poboType": "string"
},
"callbackUrl": "http://example.com"
}
Request Code Samples
curl --location '/api/v1/orders' \
--header 'x-app-id;' \
--header 'x-timestamp: 0' \
--header 'x-nonce;' \
--header 'x-request-id;' \
--header 'x-lang;' \
--header 'x-signature: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
"merchantId": "string",
"partnerOrderId": "string",
"orderType": "DEPOSIT_FIAT",
"source": {
"type": "INTERNAL_ACCOUNT",
"details": {
"currency": "USDT",
"accountId": "string"
}
},
"destination": {
"payeeId": "string"
},
"collectionInstrumentSelect": {
"instrumentId": "inst_usd_va_001"
},
"amount": {
"value": "string",
"currency": "USDT"
},
"quoteId": "string",
"slippageTolerance": 0,
"paymentOptions": {
"feeBearer": "OUR",
"purpose": "string",
"remittanceNote": "string",
"onBehalf": {
"entityName": "string"
},
"custom": {
"property1": "string",
"property2": "string"
},
"poboType": "string"
},
"callbackUrl": "http://example.com"
}'
Responses
Order created successfully
{
"success": true,
"requestId": "string",
"timestamp": "2019-08-24T14:15:22.123Z",
"data": {
"orderId": "string",
"merchantId": "string",
"orderType": "DEPOSIT_FIAT",
"status": "CREATED",
"createdAt": "2019-08-24T14:15:22.123Z",
"fromAmount": {
"value": "string",
"currency": "USDT"
},
"toAmount": {
"value": "string",
"currency": "USDT"
},
"exchangeRate": "string",
"fees": [
{
"type": "string",
"name": "string",
"desc": "string",
"amount": {
"value": "string",
"currency": "USDT"
}
}
]
}
}
Modified at 2025-09-26 03:46:34