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

/

Exchange rates list

FAQAPIContacts

Ⓒ 2026 Heleket

Privacy policy

Terms of use

AML

FAQAPIContacts

List

Request should be sent via GET method

get
/v1/exchange-rate/{currency}/list
Copy

Request

Query parameters

NameDefinition
currency*Currency code

Definition

Currency code

* - mandatory parameter

Request example


curl https://api.heleket.com/v1/exchange-rate/ETH/list
Copy

Response

Response parameters

NameDefinition
fromFrom currency
toTo currency
courseExchange rate

Definition

From currency

Definition

To currency

Definition

Exchange rate

Response example


1{
2  "state": 0,
3  "result": [
4    {
5      "from": "ETH",
6      "to": "USD",
7      "course": "1228.45000000"
8    }
9  ]
10}
Copy