Abstract API · Schema

HistoricalRatesResponse

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

Properties

Name Type Description
base string Base currency code
date string Historical date queried
exchange_rates object Map of currency codes to historical exchange rates
View JSON Schema on GitHub

JSON Schema

abstract-api-historicalratesresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/HistoricalRatesResponse",
  "title": "HistoricalRatesResponse",
  "type": "object",
  "properties": {
    "base": {
      "type": "string",
      "description": "Base currency code",
      "example": "USD"
    },
    "date": {
      "type": "string",
      "format": "date",
      "description": "Historical date queried",
      "example": "2026-01-01"
    },
    "exchange_rates": {
      "type": "object",
      "description": "Map of currency codes to historical exchange rates",
      "additionalProperties": {
        "type": "number"
      }
    }
  }
}