Abstract API · Schema

CurrencyInfo

CurrencyInfo schema from Abstract API ip-geolocation

AvatarsCompany EnrichmentContactsCurrenciesEmail ValidationExchange RatesIBAN ValidationImage ProcessingIP GeolocationIP IntelligencePhone ValidationPublic HolidaysScreenshotsTimezonesVAT ValidationWeb Scraping

Properties

Name Type Description
currency_name string Currency full name
currency_code string ISO 4217 currency code
View JSON Schema on GitHub

JSON Schema

ip-geolocation-currency-info-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/abstract-api/refs/heads/main/json-schema/ip-geolocation-currency-info-schema.json",
  "title": "CurrencyInfo",
  "description": "CurrencyInfo schema from Abstract API ip-geolocation",
  "type": "object",
  "properties": {
    "currency_name": {
      "type": "string",
      "description": "Currency full name",
      "example": "US Dollar"
    },
    "currency_code": {
      "type": "string",
      "description": "ISO 4217 currency code",
      "example": "USD"
    }
  }
}