GET POST

/info/rates

Get current currency exchange rates.

Query Params / Form Data

key string required
abcdefghijklmnopqrstuvwxyz0123

Contains your API key.
Get it from here.

currency_from string
btc,ltc,eth,gbp,eur

Either a single currency or a comma-separated list of currencies to convert.
If not provided all currencies will be provided.

currency_to string required
USD

The currency to convert the others to.

Response JSON

status string required

Indicates the result of the API request.
For more details about error handling, check here.

currency_from array required
["btc", "ltc", "eth", "gbp", "eur"]

An array of currencies getting converted.
This lists only the currencies actually present in "rates" - it no longer echoes a code that was dropped for having no usable price.

currency_to string required
USD

The currency to convert the others to.

rates object required
{ "btc": "90000", "eth": "3000", "eur": "1.2", "gbp": "1.3", "ltc": "80" }

What one unit of each currency is worth in "currency_to".
These are decimal strings, not JSON numbers. Every monetary value in the API is a normalized plain decimal string - no exponent, no trailing zeros, "0" for zero. Parse them with a decimal parser and never compare them as strings.
If the price feed for "currency_to" has gone stale the request fails with a 503 rather than quoting a frozen number; stale entries in "currency_from" are dropped from the result instead.