IPGeolocation.io · Schema

Currency

Local currency of the country where the IP is located.

GeocodingIP GeolocationIP IntelligenceIP SecurityASN LookupAbuse ContactTimezoneAstronomyUser AgentThreat IntelligencePublic APIs

Properties

Name Type Description
code string ISO 4217 currency code.
name string Currency name.
symbol string Currency symbol.
View JSON Schema on GitHub

JSON Schema

ip-location-currency-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/ipgeolocation/refs/heads/main/json-schema/ip-location-currency-schema.json",
  "title": "Currency",
  "description": "Local currency of the country where the IP is located.",
  "type": "object",
  "properties": {
    "code": {
      "type": "string",
      "description": "ISO 4217 currency code.",
      "example": "SEK"
    },
    "name": {
      "type": "string",
      "description": "Currency name.",
      "example": "Swedish Krona"
    },
    "symbol": {
      "type": "string",
      "description": "Currency symbol.",
      "example": "kr"
    }
  }
}