List of services
Returns a list of available payment services. Payment services store settings that are taken into account when creating an invoice. For example. currencies, networks, minimum and maximum limits, commissions.
post
https://api.cryptomus.com/v1/payment/services
Request
Query parameters
No parameters. Pass {}
Request example
curl https://api.cryptomus.com/v1/payment/services \
-X POST \
-H 'merchant: 8b03432e-385b-4670-8d06-064591096795' \
-H 'sign: f80fa426a89eb62bd53997326865d850' \
-H 'Content-Type: application/json' \
COPYResponse
Response parameters
The reply comes with a collection of all available payment servicesName | Definition |
---|---|
network | Blockchain network code |
currency | Currency code |
is_available | Whether a payment service is available (true / false) |
limit | |
commission |
Definition
Blockchain network codeDefinition
Currency codeDefinition
Whether a payment service is available (true / false)Definition
Definition
Structure oflimit
Name | Definition |
---|---|
min_amount | Minimum amount available for payment |
max_amount | Maximum amount available for payment |
Definition
Minimum amount available for paymentDefinition
Maximum amount available for payment
Structure ofcommission
Name | Definition |
---|---|
fee_amount | Fixed fee amount |
percent | Percentage of Cryptomus payment commission |
Definition
Fixed fee amountDefinition
Percentage of Cryptomus payment commission
Response example
1{
2 "state": 0,
3 "result": [
4 {
5 "network": "ETH",
6 "currency": "VERSE",
7 "is_available": true,
8 "limit": {
9 "min_amount": "2500.00000000",
10 "max_amount": "10000000.00000000"
11 },
12 "commission": {
13 "fee_amount": "0.00",
14 "percent": "2.00"
15 }
16 },
17 {
18 "network": "ETH",
19 "currency": "DAI",
20 "is_available": true,
21 "limit": {
22 "min_amount": "1.00000000",
23 "max_amount": "10000000.00000000"
24 },
25 "commission": {
26 "fee_amount": "0.00",
27 "percent": "2.00"
28 }
29 },
30 {
31 "network": "TON",
32 "currency": "TON",
33 "is_available": true,
34 "limit": {
35 "min_amount": "0.00100000",
36 "max_amount": "1000000.00000000"
37 },
38 "commission": {
39 "fee_amount": "0.00",
40 "percent": "2.00"
41 }
42 },
43 {
44 "network": "ETH",
45 "currency": "USDT",
46 "is_available": true,
47 "limit": {
48 "min_amount": "1.00000000",
49 "max_amount": "100000.00000000"
50 },
51 "commission": {
52 "fee_amount": "0.00",
53 "percent": "2.00"
54 }
55 },
56 {
57 "network": "BCH",
58 "currency": "BCH",
59 "is_available": true,
60 "limit": {
61 "min_amount": "0.00100000",
62 "max_amount": "10000000.00000000"
63 },
64 "commission": {
65 "fee_amount": "0.00",
66 "percent": "2.00"
67 }
68 },
69 {
70 "network": "XMR",
71 "currency": "XMR",
72 "is_available": true,
73 "limit": {
74 "min_amount": "0.00100000",
75 "max_amount": "1000000.00000000"
76 },
77 "commission": {
78 "fee_amount": "0.00",
79 "percent": "2.00"
80 }
81 },
82 {
83 "network": "DASH",
84 "currency": "DASH",
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": "2.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": "2.00"
106 }
107 },
108 {
109 "network": "BSC",
110 "currency": "DAI",
111 "is_available": true,
112 "limit": {
113 "min_amount": "1.00000000",
114 "max_amount": "10000000.00000000"
115 },
116 "commission": {
117 "fee_amount": "0.00",
118 "percent": "2.00"
119 }
120 },
121 {
122 "network": "DOGE",
123 "currency": "DOGE",
124 "is_available": true,
125 "limit": {
126 "min_amount": "1.00000000",
127 "max_amount": "10000000.00000000"
128 },
129 "commission": {
130 "fee_amount": "0.00",
131 "percent": "2.00"
132 }
133 },
134 {
135 "network": "POLYGON",
136 "currency": "USDC",
137 "is_available": true,
138 "limit": {
139 "min_amount": "1.00000000",
140 "max_amount": "10000000.00000000"
141 },
142 "commission": {
143 "fee_amount": "0.00",
144 "percent": "2.00"
145 }
146 },
147 {
148 "network": "BSC",
149 "currency": "CGPT",
150 "is_available": true,
151 "limit": {
152 "min_amount": "10.00000000",
153 "max_amount": "10000000.00000000"
154 },
155 "commission": {
156 "fee_amount": "0.00",
157 "percent": "2.00"
158 }
159 },
160 {
161 "network": "TRON",
162 "currency": "USDC",
163 "is_available": true,
164 "limit": {
165 "min_amount": "1.00000000",
166 "max_amount": "10000000.00000000"
167 },
168 "commission": {
169 "fee_amount": "0.00",
170 "percent": "2.00"
171 }
172 },
173 {
174 "network": "ETH",
175 "currency": "USDC",
176 "is_available": true,
177 "limit": {
178 "min_amount": "1.00000000",
179 "max_amount": "10000000.00000000"
180 },
181 "commission": {
182 "fee_amount": "0.00",
183 "percent": "2.00"
184 }
185 },
186 {
187 "network": "BSC",
188 "currency": "USDT",
189 "is_available": true,
190 "limit": {
191 "min_amount": "0.50000000",
192 "max_amount": "1000000.00000000"
193 },
194 "commission": {
195 "fee_amount": "0.00",
196 "percent": "2.00"
197 }
198 },
199 {
200 "network": "TRON",
201 "currency": "USDT",
202 "is_available": true,
203 "limit": {
204 "min_amount": "1.00000000",
205 "max_amount": "100000.00000000"
206 },
207 "commission": {
208 "fee_amount": "0.00",
209 "percent": "2.00"
210 }
211 },
212 {
213 "network": "TRON",
214 "currency": "TRX",
215 "is_available": true,
216 "limit": {
217 "min_amount": "1.00000000",
218 "max_amount": "1000000.00000000"
219 },
220 "commission": {
221 "fee_amount": "0.00",
222 "percent": "2.00"
223 }
224 },
225 {
226 "network": "BSC",
227 "currency": "BUSD",
228 "is_available": true,
229 "limit": {
230 "min_amount": "1.00000000",
231 "max_amount": "1000000.00000000"
232 },
233 "commission": {
234 "fee_amount": "0.00",
235 "percent": "2.00"
236 }
237 },
238 {
239 "network": "BSC",
240 "currency": "USDC",
241 "is_available": true,
242 "limit": {
243 "min_amount": "1.00000000",
244 "max_amount": "10000000.00000000"
245 },
246 "commission": {
247 "fee_amount": "0.00",
248 "percent": "2.00"
249 }
250 },
251 {
252 "network": "POLYGON",
253 "currency": "MATIC",
254 "is_available": true,
255 "limit": {
256 "min_amount": "0.50000000",
257 "max_amount": "1000000.00000000"
258 },
259 "commission": {
260 "fee_amount": "0.00",
261 "percent": "2.00"
262 }
263 },
264 {
265 "network": "POLYGON",
266 "currency": "DAI",
267 "is_available": true,
268 "limit": {
269 "min_amount": "1.00000000",
270 "max_amount": "10000000.00000000"
271 },
272 "commission": {
273 "fee_amount": "0.00",
274 "percent": "2.00"
275 }
276 },
277 {
278 "network": "BTC",
279 "currency": "BTC",
280 "is_available": true,
281 "limit": {
282 "min_amount": "0.00002000",
283 "max_amount": "100.00000000"
284 },
285 "commission": {
286 "fee_amount": "0.00",
287 "percent": "2.00"
288 }
289 },
290 {
291 "network": "LTC",
292 "currency": "LTC",
293 "is_available": true,
294 "limit": {
295 "min_amount": "0.02000000",
296 "max_amount": "1000000.00000000"
297 },
298 "commission": {
299 "fee_amount": "0.00",
300 "percent": "1.00"
301 }
302 },
303 {
304 "network": "ETH",
305 "currency": "ETH",
306 "is_available": true,
307 "limit": {
308 "min_amount": "0.01000000",
309 "max_amount": "1000.00000000"
310 },
311 "commission": {
312 "fee_amount": "0.00",
313 "percent": "2.00"
314 }
315 },
316 {
317 "network": "POLYGON",
318 "currency": "USDT",
319 "is_available": true,
320 "limit": {
321 "min_amount": "0.50000000",
322 "max_amount": "1000000.00000000"
323 },
324 "commission": {
325 "fee_amount": "0.00",
326 "percent": "2.00"
327 }
328 },
329 {
330 "network": "ETH",
331 "currency": "BUSD",
332 "is_available": true,
333 "limit": {
334 "min_amount": "1.00000000",
335 "max_amount": "10000000.00000000"
336 },
337 "commission": {
338 "fee_amount": "0.00",
339 "percent": "2.00"
340 }
341 }
342 ]
343}
COPY