Abstract API · Schema

LiveRatesResponse

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

Properties

Name Type Description
base string Base currency code
last_updated integer Unix timestamp of last update
exchange_rates object Map of currency codes to exchange rates
View JSON Schema on GitHub

JSON Schema

abstract-api-liveratesresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LiveRatesResponse",
  "title": "LiveRatesResponse",
  "type": "object",
  "properties": {
    "base": {
      "type": "string",
      "description": "Base currency code",
      "example": "USD"
    },
    "last_updated": {
      "type": "integer",
      "description": "Unix timestamp of last update",
      "example": 1713518400
    },
    "exchange_rates": {
      "type": "object",
      "description": "Map of currency codes to exchange rates",
      "additionalProperties": {
        "type": "number"
      }
    }
  }
}