Post CEX Exchange API
Initiates an exchange transaction, including sender and receiver information, transaction status, quoted amounts, and token details. This information is useful for tracking and managing token exchange
Endpoint: POST/exchange
POST/exchange
Request Body: A JSON object containing Exchange
details.
Request Body Fields:
amount
number
Amount to be exchanged (example: 1)
from
string
Symbol of the input token
(example: ETH)
to
string
Symbol of the output token
(example: BNB)
receiverTag (optional)
string
Optional receiver tag (example: 123)
anonymous
boolean
Indicates if the transaction is anonymous (example: false)
addressTo
string
Destination address
walletId (optional)
string
User's wallet identifier
ip
string
User IP address. Used for fraud prevention only
userAgent
string
User userAgent browser string
timezone
string
User browser timezone
(example: UTC)
useXmr (optional)
string
Use XMR if it is true or if it is false use another token for the anonymous transaction for the quote or exchange.
Example Request:
Optional description in partner.exchange
Schema
Example Response:
Response Fields:
houdiniId
string
Unique identifier for the exchange transaction
created
string
Timestamp of when the transaction was created
senderAddress
string
Address of the sender
receiverAddress
string
Address of the receiver
anonymous
boolean
Indicates if the transaction is anonymous
expires
string
Expiration timestamp of the transaction
status
number
Status code of the transaction
inAmount
number
Amount sent in the exchange
outAmount
number
Amount received in the exchange
inSymbol
string
Symbol of the input token
outSymbol
string
Symbol of the output token
senderTag (optional)
string
Optional sender tag
receiverTag (optional)
string
Optional receiver tag
notified
boolean
Indicates if the user has been notified
eta
number
Estimated time of arrival (in minutes)
inAmountUsd
number
Input amount converted to USD
inCreated
string
Timestamp when the input was created
quote
object
outToken
object
inToken
object
Last updated