◻️Solver Order Creation API
When the user confirms the exchange, the platform calls this API to create an order.
Last updated
When the user confirms the exchange, the platform calls this API to create an order.
HTTP Method: POST
Provider: Solver
intentId
Yes
Solver order ID
fromAmt
Yes
Amount of the source token provided by the user
fromCoin
Yes
Source token/currency
toCoin
Yes
Target token/currency
toAmt
Yes
Amount the user should receive
destinationAddr
Yes
User's receiving address
{
"intentId": "123456",
"fromAmt": "1000000",
"fromCoin": "USDT(BASE)",
"toCoin": "USDT(ETH)",
"toAmt": "999800",
"destinationAddr": "0x123456"
}result
String
Returns success when the order is created successfully
Last updated
{
"data": {
"result": "success"
}
}