Skip to content

Currency Data

This includes the local currency code, symbol, full name, and Unicode representation associated with the IP’s country.

Below is an example of the currency-related fields returned by a lookup:

Request Example

GET https://api.ipwho.org/ip/76.102.11.203?apiKey=sk.xxxx&get=currency

Response Example

{
"success": true,
"data": {
"currency": {
"code": "USD",
"symbol": "$",
"name": "US Dollar",
"name_plural": "US dollars",
"hex_unicode": "24"
}
}
}

Currency Data Fields

ParameterTypeDescription
codestringThe ISO 4217 currency code (e.g., USD, EUR).
symbolstringThe symbol used to represent the currency (e.g., $, €).
namestringThe name of the currency (e.g., US Dollar).
name_pluralstringThe plural form of the currency name (e.g., US dollars).
hex_unicodestringThe hexadecimal Unicode representation of the currency symbol.