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

/

Request format

FAQAPIContacts

Ⓒ 2026 Heleket

Privacy policy

Terms of use

AML

FAQAPIContacts

Request format

Endpoint
https://api.heleket.com/
Copy

All requests must be sent via POST method in JSON format.
Request must be signed

Authentication

The authentication process is carried out by sending 2 HTTP headers:

NameDefinition
merchantThe merchant's uuid, which you can find in the merchant's personal account in the settings section.
signMD5 hash of the body of the POST request encoded in base64 and combined with your API key.

Definition

The merchant's uuid, which you can find in the merchant's personal account in the settings section.

Definition

MD5 hash of the body of the POST request encoded in base64 and combined with your API key.

Example of signature generation in php:


$data = json_encode($data);
$sign = md5(base64_encode($data) . $API_KEY);
Copy

If the request doesn’t require passing parameters in the body, then form a signature for an empty string:


$sign = md5(base64_encode('') . $API_KEY);
Copy
Different Key APIs are used to accept payments and payouts

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' \
  -d '{}'
Copy