Skip to main content

Rates

Exchange rates and fees.

Request

POST /v2/rates
POST /v2/rates HTTP/1.1
Content-Type: application/json
Accept: application/json; charset=utf-8
Api-key: {publicApiKey}
Signature: {signature}
{}
warning

You need to use an empty object {} in the request and create a digital signature for it.

Response

The response object will contain a set of objects grouped by order type and structured as follows:

RESPONSE
HTTP/1.1 200 OK
Content-Type: application/json

{
"status": "success",
"data": {
"deposit": {
"btc_btc": {
"order_type": "deposit",
"currency_from": "btc",
"network_from": "btc",
"currency_to": "btc",
"network_to": null,
"exchange_rate": null,
"min_amount_from": "0.002",
"max_amount_from": "1000000",
"fixed_fee_amount_from": "0.0005",
"fixed_fee_amount_to": null,
"fee_percent_from": null,
"min_fee_amount_from": null,
"fee_percent_to": null,
"min_fee_amount_to": null,
"fee_percent_from_payer": "merchant",
"fee_percent_to_payer": null,
"currency_from_precision": 8,
"currency_to_precision": 8
},
"usdt_trc20": {
"order_type": "deposit",
"currency_from": "usdt",
"network_from": "trc20",
"currency_to": "usdt",
"network_to": null,
"exchange_rate": null,
"min_amount_from": "2",
"max_amount_from": "1000000",
"fixed_fee_amount_from": null,
"fixed_fee_amount_to": null,
"fee_percent_from": null,
"min_fee_amount_from": null,
"fee_percent_to": null,
"min_fee_amount_to": null,
"fee_percent_from_payer": "merchant",
"fee_percent_to_payer": null,
"currency_from_precision": 2,
"currency_to_precision": 2
}
},
"deposit_exchange": {
"eth_erc20-usdt": {
"order_type": "deposit_exchange",
"currency_from": "eth",
"network_from": "erc20",
"currency_to": "usdt",
"network_to": null,
"exchange_rate": "2441.63659",
"min_amount_from": "0.02",
"max_amount_from": "10000000",
"fixed_fee_amount_from": "0.002",
"fixed_fee_amount_to": null,
"fee_percent_from": null,
"min_fee_amount_from": null,
"fee_percent_to": null,
"min_fee_amount_to": null,
"fee_percent_from_payer": "merchant",
"fee_percent_to_payer": null,
"currency_from_precision": 8,
"currency_to_precision": 2
}
},
"deposit_exchange_withdraw": {
"btc_btc-usdt_trc20": {
"order_type": "deposit_exchange_withdraw",
"currency_from": "btc",
"network_from": "btc",
"currency_to": "usdt",
"network_to": "trc20",
"exchange_rate": "106825.0717",
"min_amount_from": "0.002",
"max_amount_from": "0.00458734",
"fixed_fee_amount_from": "0.0005",
"fixed_fee_amount_to": "3",
"fee_percent_from": null,
"min_fee_amount_from": null,
"fee_percent_to": null,
"min_fee_amount_to": null,
"fee_percent_from_payer": "merchant",
"fee_percent_to_payer": "client",
"currency_from_precision": 8,
"currency_to_precision": 2
}
},
"exchange": {
"eth-usdt": {
"order_type": "exchange",
"currency_from": "eth",
"network_from": null,
"currency_to": "usdt",
"network_to": null,
"exchange_rate": "2441.63659",
"min_amount_from": "0.00409562",
"max_amount_from": null,
"fixed_fee_amount_from": null,
"fixed_fee_amount_to": null,
"fee_percent_from": null,
"min_fee_amount_from": null,
"fee_percent_to": null,
"min_fee_amount_to": null,
"fee_percent_from_payer": null,
"fee_percent_to_payer": null,
"currency_from_precision": 8,
"currency_to_precision": 2
},
"usdt-eth": {
"order_type": "exchange",
"currency_from": "usdt",
"network_from": null,
"currency_to": "eth",
"network_to": null,
"exchange_rate": "0.0004030504",
"min_amount_from": "10",
"max_amount_from": null,
"fixed_fee_amount_from": null,
"fixed_fee_amount_to": null,
"fee_percent_from": null,
"min_fee_amount_from": null,
"fee_percent_to": null,
"min_fee_amount_to": null,
"fee_percent_from_payer": null,
"fee_percent_to_payer": null,
"currency_from_precision": 2,
"currency_to_precision": 8
}
},
"exchange_withdraw": {
"bch-usdt_trc20": {
"order_type": "exchange_withdraw",
"currency_from": "bch",
"network_from": null,
"currency_to": "usdt",
"network_to": "trc20",
"exchange_rate": "521.96853",
"min_amount_from": "0.01533",
"max_amount_from": "1915.82432",
"fixed_fee_amount_from": null,
"fixed_fee_amount_to": "3",
"fee_percent_from": null,
"min_fee_amount_from": null,
"fee_percent_to": null,
"min_fee_amount_to": null,
"fee_percent_from_payer": null,
"fee_percent_to_payer": "client",
"currency_from_precision": 5,
"currency_to_precision": 2
}
},
"withdraw": {
"usdt_trc20": {
"order_type": "withdraw",
"currency_from": "usdt",
"network_from": null,
"currency_to": "usdt",
"network_to": "trc20",
"exchange_rate": null,
"min_amount_from": "8",
"max_amount_from": "6240561",
"fixed_fee_amount_from": null,
"fixed_fee_amount_to": "3",
"fee_percent_from": null,
"min_fee_amount_from": null,
"fee_percent_to": null,
"min_fee_amount_to": null,
"fee_percent_from_payer": null,
"fee_percent_to_payer": "client",
"currency_from_precision": 2,
"currency_to_precision": 2
}
}
}
}

Description of parameters in the response:

  • order_type – Order type, see Orders
  • currency_from – Deposit or exchange currency
  • network_from – Deposit network
  • currency_to – The currency of the withdrawal or into which the deposit is exchanged
  • network_to – Withdrawal network
  • exchange_rate – Exchange rate
  • fixed_fee_amount_from – Fixed commission amount in deposit currency
  • fixed_fee_amount_to – Fixed commission amount in the withdrawal currency
  • fee_percent_from – Commission as a percentage of the deposit amount
  • fee_percent_to – Commission as a percentage of the withdrawal amount
  • min_fee_amount_from – Minimum commission amount from the deposit amount
  • min_fee_amount_to – Minimum commission amount from the payout amount
  • min_amount_from – Minimum deposit or exchange amount
  • max_amount_from – Maximum deposit or exchange amount
  • currency_from_precision – Deposit or exchange currency precision, number of decimal places
  • currency_to_precision – Withdrawal currency precision, number of decimal places
  • fee_percent_from_payer – Who pays the commission on the deposit amount: merchant or client (null if the exchange process comes first)
  • fee_percent_to_payer – Who pays the commission from the withdrawal amount: merchant or client (null if the exchange process is last). Merchant means that the commission is withheld separately from the merchant's balance