AML
Country Data
Crypto
Customer
- 2FA
- AccessControl
- Active Session
- Credentials
- Customer
- Organization
IPG
- IPG Backoffice APIs
- IPG Payment APIs
KYB
- Company
- EIN Verification
- IBAN Verification
- NIF Verification
- Product
- System
- TIN Verification
- VAT Verification
KYC
PEPS
- Default
- GETGet get profile
Smart Contract
- Global Settings
- Rules
- Smart Contract
Wallet
- Admin
- Allowed Operation
- Assets
- Currency
- Currency Pairs
- Dashboard
- Fee
- Limit
- Misc
- Operation Address
- Operation Destination
- Order
- Transactions
- Wallets
Public
Tradable Asset Pairs
POST
/
tradableAssetPairs
Copy
curl --request POST \
--url https://gateway.varchev.com/crypto/tradableAssetPairs \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"pair": "XBTUSD",
"info": "info"
}'
Copy
{
"error": [],
"result": {
"XXBTZUSD": {
"altname": "XBTUSD",
"wsname": "XBT/USD",
"aclass_base": "currency",
"base": "XXBT",
"aclass_quote": "currency",
"quote": "ZUSD",
"lot": "unit",
"pair_decimals": 1,
"lot_decimals": 8,
"lot_multiplier": 1,
"leverage_buy": [
2,
3,
4,
5
],
"leverage_sell": [
2,
3,
4,
5
],
"fees": [
[
0,
0.26
],
[
50000,
0.24
],
[
100000,
0.22
],
[
250000,
0.2
],
[
500000,
0.18
],
[
1000000,
0.16
],
[
2500000,
0.14
],
[
5000000,
0.12
],
[
10000000,
0.1
]
],
"fees_maker": [
[
0,
0.16
],
[
50000,
0.14
],
[
100000,
0.12
],
[
250000,
0.1
],
[
500000,
0.08
],
[
1000000,
0.06
],
[
2500000,
0.04
],
[
5000000,
0.02
],
[
10000000,
0
]
],
"fee_volume_currency": "ZUSD",
"margin_call": 80,
"margin_stop": 40,
"ordermin": "0.0001"
}
}
}
Authorizations
The access token received from the authorization server in the OAuth 2.0 flow.
Body
application/json · object
Response
200 - application/json
Successful response
The response is of type object
.
Copy
curl --request POST \
--url https://gateway.varchev.com/crypto/tradableAssetPairs \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"pair": "XBTUSD",
"info": "info"
}'
Copy
{
"error": [],
"result": {
"XXBTZUSD": {
"altname": "XBTUSD",
"wsname": "XBT/USD",
"aclass_base": "currency",
"base": "XXBT",
"aclass_quote": "currency",
"quote": "ZUSD",
"lot": "unit",
"pair_decimals": 1,
"lot_decimals": 8,
"lot_multiplier": 1,
"leverage_buy": [
2,
3,
4,
5
],
"leverage_sell": [
2,
3,
4,
5
],
"fees": [
[
0,
0.26
],
[
50000,
0.24
],
[
100000,
0.22
],
[
250000,
0.2
],
[
500000,
0.18
],
[
1000000,
0.16
],
[
2500000,
0.14
],
[
5000000,
0.12
],
[
10000000,
0.1
]
],
"fees_maker": [
[
0,
0.16
],
[
50000,
0.14
],
[
100000,
0.12
],
[
250000,
0.1
],
[
500000,
0.08
],
[
1000000,
0.06
],
[
2500000,
0.04
],
[
5000000,
0.02
],
[
10000000,
0
]
],
"fee_volume_currency": "ZUSD",
"margin_call": 80,
"margin_stop": 40,
"ordermin": "0.0001"
}
}
}
Assistant
Responses are generated using AI and may contain mistakes.