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

/

Discount Payment

/

List of discounts

FAQAPIContacts

Ⓒ 2026 Heleket

Privacy policy

Terms of use

AML

FAQAPIContacts

List of discounts

post
https://api.heleket.com/v1/payment/discount/list
Copy

Request

Query parameters

No parameters

Request example


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

Copy

Response

Response parameters

NameDefinition
networkBlockchain network code
currencyCurrency code
discountDiscount percent

Definition

Blockchain network code

Definition

Currency code

Definition

Discount percent

Response example


1{
2  "state": 0,
3  "result": [
4    {
5      "currency": "BTC",
6      "network": "btc",
7      "discount": 0
8    },
9    {
10      "currency": "BUSD",
11      "network": "bsc",
12      "discount": -10
13    },
14    {
15      "currency": "DASH",
16      "network": "dash",
17      "discount": 0
18    }
19  ]
20}
21
22
Copy