v1

latestOpenAPI 3.1.02026-07-226250251.5 KB
Crypto Orchestration

Create a crypto payment quote

Generate a fee estimation quote for a transit payment

post/v1/transit/quote

Request body

OR
OR
OR

Example request

{
  "order_amount": "100.00",
  "integration_type": "BYBIT",
  "settlement_config": {
    "settlement_via": "MARKET_ORDER",
    "rebalance_fee": true,
    "destination_details": {
      "wallet_address": "7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU",
      "currency": "USDC",
      "rail": "SOLANA"
    }
  }
}

Response

Quote created successfully

OR
OR
OR

Example response

{
  "data": {
    "quote_id": "4081fa09-7761-42b6-8f66-24beae1a2ca5",
    "expire_at": 1770916749,
    "order_amount": "100.00",
    "integration_type": "BYBIT",
    "settlement_config": {
      "settlement_via": "MARKET_ORDER",
      "rebalance_fee": true,
      "destination_details": {
        "wallet_address": "7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU",
        "currency": "USDC",
        "rail": "SOLANA"
      }
    },
    "quote_estimation": {
      "payment_fee": "0.00",
      "conversion_fee": "0.00",
      "withdrawal_fee": "0.00",
      "gas_fee": "0.50",
      "total_fee": "0.50",
      "total_order_amount": "100.00"
    }
  }
}