Skip to main content

Get currency list

POST getCurrencies

Get enabled currencies

note

Changelly can disable and enable any currency at any time and the response list will reflect the change.

HTTP request

https://api.changelly.com/v2/#getCurrencies

Request

Header parameters
NameTypeRequiredDescription
X-Api-KeystringtrueYour API key (SHA256 from Public Key)
X-Api-SignaturestringtrueThe query's serialized body signed by your private key according to the RSA-SHA256 method.

Body parameters

NameTypeRequiredDescription
jsonrpcstringtrueJSON-RPC version.
idstringtrueClient's custom ID.
methodstringtrueAPI method name.
paramsobjectfalseRequest parameters.

Response

Sample response

application/json
{
"jsonrpc": "2.0",
"id": "test",
"result": [
"btc",
"ltc",
"eth",
"xrp",
"xem",
"lsk",
"xmr",
"zec"
]
}