v1

latestOpenAPI 3.1.0Proprietary2026-07-2464170247.4 KB
Conversions

Execute Quote

Create a hedge for a conversion quote in a specific customer

post/v1/customers/{customer_id}/conversions/hedge

Path parameters

customer_idstring required

Customer ID

Request body

quote_idstring required

Quote ID to create hedge for

Example request

{
  "quote_id": "1f581bfe-25de-42aa-9429-6802412850b3"
}

Response

transaction_idstring required

Unique transaction identifier

order_statusstring required

Order status

quote_idstring required

Quote ID

user_pay_amountstring required

User pay amount

user_pay_assetstring required

User pay asset

user_obtain_amountstring required

User obtain amount

user_obtain_assetstring required

User obtain asset

ratestring required

Rate

feestring required

Fee

fee_currencystring required

Fee currency

Example response

{
  "transaction_id": "1f581bfe-25de-42aa-9429-6802412850b3",
  "order_status": "PENDING",
  "quote_id": "1f581bfe-25de-42aa-9429-6802412850b3",
  "user_pay_amount": "100.00",
  "user_pay_asset": "USDT",
  "user_obtain_amount": "100.00",
  "user_obtain_asset": "USDT",
  "rate": "1.1",
  "fee": "1.20",
  "fee_currency": "USD",
  "platform_fee": {
    "value": "10.55",
    "asset": "USDC"
  },
  "partner_fee": {
    "value": "10.55",
    "asset": "USDC"
  }
}