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=currencyResponse Example
{ "success": true, "data": { "currency": { "code": "USD", "symbol": "$", "name": "US Dollar", "name_plural": "US dollars", "hex_unicode": "24" } }}Currency Data Fields
| Parameter | Type | Description |
|---|---|---|
code | string | The ISO 4217 currency code (e.g., USD, EUR). |
symbol | string | The symbol used to represent the currency (e.g., $, €). |
name | string | The name of the currency (e.g., US Dollar). |
name_plural | string | The plural form of the currency name (e.g., US dollars). |
hex_unicode | string | The hexadecimal Unicode representation of the currency symbol. |