Create Digital Asset Exchange
Admin Access RequiredUse this API to create a Digital Asset Exchange. This API will respond with a Transaction ID, use this Transaction ID in the GET Transaction endpoint to get the crypto quote (e.g. rate and amounts). No funds move until the order is confirmed.
Availability: This API is currently available in sandbox and is targeted for production on 10 August 2026. Reach out to us to have it enabled for your account.
Digital Asset Exchange Flow
A Digital Asset Exchange follows a two-step quote/confirm pattern:
- Create order (POST
/v1/crypto/order) — returns a live, time-boxed quote (rate and amounts). No funds move. - Review quote (GET
/v1/transactions/:transactionID) — retrieve the order to review the quote before confirming. - Confirm order (PUT
/v1/crypto/order) — confirms the quote and triggers execution and settlement.
The quote expires automatically if it is not confirmed before quote_valid_until.
Example POST to create a Digital Asset Exchange (quote)
This API will respond with a transaction_id
Use this transaction_id in the GET Transaction endpoint to get the Digital Asset Exchange. This is a quote and not an executed trade. If you would like to execute the trade, use the Digital Asset Exchange PUT API before the quote expires.
It might take several seconds for the Transaction to be able to be retrieved by this API. If you get a 404 error, please try again in 5-15 seconds.
The quote will automatically expire if the order is not confirmed before quote_valid_until.
Authorization
AuthorizationRequiredBearer <token>Enter your token in the format: Bearer {token}
In: header
Request Body
application/jsonOptionalsideRequiredstringTrade direction from the customer perspective: "buy" or "sell".
"buy" | "sell"priorityRequiredstringSupported values are "instant" only. Drives how quickly settlement is dispatched.
"instant"railRequiredstringThe rail the trade flows through: "rfq".
"rfq"symbolRequiredstringThe trading pair symbol, e.g. "USDT-USD".
base_assetRequiredstringThe currency in which the amount is made (e.g. USD, EUR, SGD)
quote_assetRequiredstringThe currency in which the amount is made (e.g. USD, EUR, SGD)
requested_assetRequiredstringThe currency in which the amount is made (e.g. USD, EUR, SGD)
requested_amountRequiredstringThe amount of money. Our API expect amount values to be in minor units - the smallest unit of a currency depending on the number of decimals. For example, USD has two decimals. So $10 is represented by 1000. JPY has no decimals, so ¥10 is 10.
customer_pays_account_idRequiredstringAccount the customer pays from. Must be owned by your legal entity.
customer_receives_account_idRequiredstringAccount the proceeds are delivered to. Must be owned by your legal entity.
descriptionstringadditional_detailsstringHeader Parameters
Idempotency-KeyRequiredstringResponse Body
Success response
transaction_idRequiredstringGet Balance Summary GET
Retrieves the balance summary for the given account ID, can be filtered by date.
Confirm Digital Asset Exchange PUT
Use this API to confirm and execute a Digital Asset Exchange quote that was created with the POST Create Digital Asset Exchange endpoint. The quote must be confirmed before it expires.