Payment

get
https://api.cryptomus.com/v2/user-api/payment/services
COPY

Request

Query parameters

No parameters

Request example


curl https://api.cryptomus.com/v2/user-api/payment/services \
  -X POST \
  -H 'userId: 8b03432e-385b-4670-8d06-064591096795' \
  -H 'sign: fe99035f86fa436181717b302b95bacff1' \
  -H 'Content-Type: application/json' \
  -d '{}'
COPY

Response

Response parameters

NameDefinition
networkBlockchain network code
currencyCurrency code
is_availableWhether a payment service is available (true / false)
limit
commission

Definition

Blockchain network code

Definition

Currency code

Definition

Whether a payment service is available (true / false)

Definition

Definition

Limit response parameters

NameDefinition
min_amountMinimum amount available for payment
max_amountMaximum amount available for payment

Definition

Minimum amount available for payment

Definition

Maximum amount available for payment

Commission response parameters

NameDefinition
fee_amountFixed fee amount
percentPercentage of commission from the payment

Definition

Fixed fee amount

Definition

Percentage of commission from the payment

Response example


1{
2  "state": 0,
3  "result": [
4    {
5      "network": "TRON",
6      "currency": "USDT",
7      "is_available": true,
8      "limit": {
9        "min_amount": "1.00000000",
10        "max_amount": "100000.00000000"
11      },
12      "commission": {
13        "fee_amount": "0.00",
14        "percent": "0.00"
15      }
16    },
17    {
18      "network": "TRON",
19      "currency": "TRX",
20      "is_available": true,
21      "limit": {
22        "min_amount": "1.00000000",
23        "max_amount": "1000000.00000000"
24      },
25      "commission": {
26        "fee_amount": "0.00",
27        "percent": "0.00"
28      }
29    },
30    {
31      "network": "BTC",
32      "currency": "BTC",
33      "is_available": true,
34      "limit": {
35        "min_amount": "0.00100000",
36        "max_amount": "100.00000000"
37      },
38      "commission": {
39        "fee_amount": "0.00",
40        "percent": "0.00"
41      }
42    },
43    {
44      "network": "ETH",
45      "currency": "ETH",
46      "is_available": true,
47      "limit": {
48        "min_amount": "0.01000000",
49        "max_amount": "1000.00000000"
50      },
51      "commission": {
52        "fee_amount": "0.00",
53        "percent": "0.00"
54      }
55    },
56    {
57      "network": "ETH",
58      "currency": "USDT",
59      "is_available": true,
60      "limit": {
61        "min_amount": "1.00000000",
62        "max_amount": "100000.00000000"
63      },
64      "commission": {
65        "fee_amount": "0.00",
66        "percent": "0.00"
67      }
68    },
69    {
70      "network": "DASH",
71      "currency": "DASH",
72      "is_available": true,
73      "limit": {
74        "min_amount": "0.02000000",
75        "max_amount": "1000000.00000000"
76      },
77      "commission": {
78        "fee_amount": "0.00",
79        "percent": "0.00"
80      }
81    },
82    {
83      "network": "LTC",
84      "currency": "LTC",
85      "is_available": true,
86      "limit": {
87        "min_amount": "0.02000000",
88        "max_amount": "1000000.00000000"
89      },
90      "commission": {
91        "fee_amount": "0.00",
92        "percent": "0.00"
93      }
94    },
95    {
96      "network": "BSC",
97      "currency": "BNB",
98      "is_available": true,
99      "limit": {
100        "min_amount": "0.00500000",
101        "max_amount": "1000000.00000000"
102      },
103      "commission": {
104        "fee_amount": "0.00",
105        "percent": "0.00"
106      }
107    },
108    {
109      "network": "BSC",
110      "currency": "BUSD",
111      "is_available": true,
112      "limit": {
113        "min_amount": "1.00000000",
114        "max_amount": "1000000.00000000"
115      },
116      "commission": {
117        "fee_amount": "0.00",
118        "percent": "0.00"
119      }
120    },
121    {
122      "network": "POLYGON",
123      "currency": "MATIC",
124      "is_available": true,
125      "limit": {
126        "min_amount": "0.50000000",
127        "max_amount": "1000000.00000000"
128      },
129      "commission": {
130        "fee_amount": "0.00",
131        "percent": "0.00"
132      }
133    },
134    {
135      "network": "POLYGON",
136      "currency": "USDT",
137      "is_available": true,
138      "limit": {
139        "min_amount": "0.50000000",
140        "max_amount": "1000000.00000000"
141      },
142      "commission": {
143        "fee_amount": "0.00",
144        "percent": "0.00"
145      }
146    }
147  ]
148}
149      
COPY