Abstract API · Schema

CurrencyInfo

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

abstract-api-currencyinfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CurrencyInfo",
  "title": "CurrencyInfo",
  "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"
    }
  }
}