apyhub

Currencies Dictionary API

What it does

Currency List returns a reference list of world currencies in a simple data array. Each item includes the ISO 4217 currency code in key, the English currency name in value, the currency symbol in symbol, and an emoji.

Use it when you need a reliable currency dropdown, want to map codes like EUR or JPY to human-readable names, or need to display currency metadata in a product interface. The response is straightforward and stable, which makes it easy to cache and reuse across apps, admin tools, and checkout flows.

Send a GET request with no parameters and get back the full currency set. Because the output is reference data, it works well for form validation, localization, reporting filters, and any feature that needs consistent currency labels without maintaining your own list.

If you are building financial software, a marketplace, or a global reporting dashboard, Currency List gives you the canonical currency values your app can present to users or store alongside transaction data.

GET
List all currencies
https://api.eu.apyverse.com/apyhub/list-all-currencies

QUICKSTART

GUIDE

Quickstart

Fetch the list of currencies.

curl -X GET "https://api.eu.apyverse.com/apyhub/list-all-currencies" \
  -H "apy-token: $APY_TOKEN"

What you'll get back

Returns a JSON object with a data array. Each item in the array is an object with key, emoji, value, and symbol fields describing a currency.

{
  "data": [
    {
      "key": "EUR",
      "emoji": "💶",
      "value": "Euro",
      "symbol": "€"
    }
  ]
}
TRY ITLIVE · 1002 ATOMS
Loading your default key…
The full key is used to call the gateway and stays in this tab — never sent to orbit or saved.

About this endpoint

What it does

Returns a JSON object containing a data array of currency objects. Each item in the array represents one currency and includes its code, emoji, English name, and symbol.

Response

Returns a JSON object with a data array field. Each element of data is an object with key, emoji, value, and symbol string fields.

ParameterTypeMandatoryDescription
dataObject ArrayYesArray of currency objects.
data[].keyStringYesISO 4217 currency code.
data[].emojiStringYesCurrency emoji.
data[].valueStringYesCurrency name in English.
data[].symbolStringYesCurrency symbol.

Parameters

No parameters.
â–£ COMMON ERRORS

Errors any endpoint can return

400bad_request

Required parameter missing or malformed body.

401unauthorized

API key missing, revoked, or not authorized for this service.

429rate_limited

Your plan's per-second rate exceeded. Retry with exponential backoff.

503upstream_busy

Backend temporarily unavailable. Try again in a few seconds.