Loading
Loading
https://api.apifreaks.com/v1.0/currency/symbols
1. Open the Authorizations dropdown and Verify your API key.
2. Click Run to see the live response here.
$ pip install requestsimport requests
url = "https://api.apifreaks.com/v1.0/currency/symbols"
payload = {}
headers = {
'X-apiKey': ''
}
response = requests.request("GET", url, headers=headers, data=payload)
print(response.text)
| Field | Type | Requirement | Description |
|---|---|---|---|
| currencySymbols | Map | Mandatory | A map of all currency symbols keyed by their currency code. Each entry maps a currency code to its full currency name. |
| currencySymbols.[currencyCode] | String | Mandatory | The full name of the currency corresponding to the given currency code (e.g., "FJD" → "Fiji Dollar"). |