Log in

API Documentation
  • Main
  • Getting API keysRequest format
  • Payments
    Getting started Creating an invoice Creating a Static wallet Generate a QR-code Block static wallet Refund payments on blocked address Payment information Refund Resend webhook Testing webhook List of services Payment history Webhook Payment statuses AML links
    Payouts
    Getting started Calculation of the withdrawal amount Creating a payout Payout information Payout history Payout statuses Webhook List of services Transfer to personal wallet Transfer to business wallet
  • PHP SDK
  • CMS Modules
  • Discount Payment
    List of discounts Set discount to payment method
  • Exchange rates listBalanceReference

Main

/

Payments

/

List of services

FAQAPIContacts

Ⓒ 2026 Heleket

Privacy policy

Terms of use

AML

FAQAPIContacts

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.heleket.com/v1/payment/services
Copy

Request

Query parameters

No parameters. Pass {}

Request example


curl https://api.heleket.com/v1/payment/services \
-X POST \
-H 'merchant: 8b03432e-385b-4670-8d06-064591096795' \
-H 'sign: f80fa426a89eb62bd53997326865d850' \
-H 'Content-Type: application/json' \
Copy

Response

Response parameters

The reply comes with a collection of all available payment services
NameDefinition
networkBlockchain network code
currencyCurrency code
is_availableWhether a payment service is available (true / false)
is_enabledIs the payment method enabled in your merchant profile (true/false)
limit
commission

Definition

Blockchain network code

Definition

Currency code

Definition

Whether a payment service is available (true / false)

Definition

Is the payment method enabled in your merchant profile (true/false)

Definition

Definition

Structure oflimit

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

Structure ofcommission

NameDefinition
fee_amountFixed fee amount
percentPercentage of Heleket payment commission

Definition

Fixed fee amount

Definition

Percentage of Heleket payment commission

Response example


1{
2	"state": 0,
3	"result": [{
4		"network": "ETH",
5		"currency": "VERSE",
6		"is_available": true,
7        "is_enabled": 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		"network": "ETH",
18		"currency": "DAI",
19		"is_available": true,
20        "is_enabled": 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		"network": "TON",
31		"currency": "TON",
32		"is_available": true,
33        "is_enabled": 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		"network": "ETH",
44		"currency": "USDT",
45		"is_available": true,
46        "is_enabled": 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		"network": "BCH",
57		"currency": "BCH",
58		"is_available": true,
59        "is_enabled": 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		"network": "XMR",
70		"currency": "XMR",
71		"is_available": true,
72        "is_enabled": 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		"network": "DASH",
83		"currency": "DASH",
84		"is_available": true,
85        "is_enabled": 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		"network": "BSC",
96		"currency": "BNB",
97		"is_available": true,
98        "is_enabled": 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		"network": "BSC",
109		"currency": "DAI",
110		"is_available": true,
111       "is_enabled": 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		"network": "DOGE",
122		"currency": "DOGE",
123		"is_available": true,
124        "is_enabled": 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		"network": "POLYGON",
135		"currency": "USDC",
136		"is_available": true,
137        "is_enabled": 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		"network": "BSC",
148		"currency": "CGPT",
149		"is_available": true,
150        "is_enabled": 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		"network": "TRON",
161		"currency": "USDC",
162		"is_available": true,
163        "is_enabled": 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		"network": "ETH",
174		"currency": "USDC",
175		"is_available": true,
176        "is_enabled": 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		"network": "BSC",
187		"currency": "USDT",
188		"is_available": true,
189        "is_enabled": 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		"network": "TRON",
200		"currency": "USDT",
201		"is_available": true,
202        "is_enabled": 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		"network": "TRON",
213		"currency": "TRX",
214		"is_available": true,
215        "is_enabled": 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		"network": "BSC",
226		"currency": "BUSD",
227		"is_available": true,
228        "is_enabled": 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		"network": "BSC",
239		"currency": "USDC",
240		"is_available": true,
241        "is_enabled": 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		"network": "POLYGON",
252		"currency": "MATIC",
253		"is_available": true,
254        "is_enabled": 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		"network": "POLYGON",
265		"currency": "DAI",
266		"is_available": true,
267        "is_enabled": 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		"network": "BTC",
278		"currency": "BTC",
279		"is_available": true,
280        "is_enabled": 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		"network": "LTC",
291		"currency": "LTC",
292		"is_available": true,
293        "is_enabled": 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		"network": "ETH",
304		"currency": "ETH",
305		"is_available": true,
306        "is_enabled": 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		"network": "POLYGON",
317		"currency": "USDT",
318		"is_available": true,
319        "is_enabled": 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		"network": "ETH",
330		"currency": "BUSD",
331		"is_available": true,
332        "is_enabled": 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}
Copy