Abstract API · JSON Structure

Exchange Rates Historical Rates Response Structure

HistoricalRatesResponse schema from Abstract API exchange-rates

Type: object Properties: 3
AvatarsCompany EnrichmentContactsCurrenciesEmail ValidationExchange RatesIBAN ValidationImage ProcessingIP GeolocationIP IntelligencePhone ValidationPublic HolidaysScreenshotsTimezonesVAT ValidationWeb Scraping

HistoricalRatesResponse is a JSON Structure definition published by Abstract API, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

base date exchange_rates

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/abstract-api/refs/heads/main/json-structure/exchange-rates-historical-rates-response-structure.json",
  "name": "HistoricalRatesResponse",
  "description": "HistoricalRatesResponse schema from Abstract API exchange-rates",
  "type": "object",
  "properties": {
    "base": {
      "type": "string",
      "description": "Base currency code",
      "example": "USD"
    },
    "date": {
      "type": "date",
      "description": "Historical date queried",
      "example": "2026-01-01"
    },
    "exchange_rates": {
      "type": "object",
      "description": "Map of currency codes to historical exchange rates",
      "additionalProperties": {
        "type": "double"
      }
    }
  }
}