Abstract API · Schema

CurrencyInfo

CurrencyInfo schema from Abstract API ip-intelligence

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

Properties

Name Type Description
name string
iso_code string
symbol string
View JSON Schema on GitHub

JSON Schema

ip-intelligence-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-intelligence-currency-info-schema.json",
  "title": "CurrencyInfo",
  "description": "CurrencyInfo schema from Abstract API ip-intelligence",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "example": "US Dollar"
    },
    "iso_code": {
      "type": "string",
      "example": "USD"
    },
    "symbol": {
      "type": "string",
      "example": "$"
    }
  }
}