Fixer · JSON Structure

Fixer Rates Structure

JSON Structure for a Fixer real-time or historical rates envelope.

Type: object Properties: 6 Required: 5
Currency ExchangeForeign ExchangeFXForexECBConversionHistorical RatesTime SeriesFluctuationAPILayerPublic APIs

FixerRatesResponse is a JSON Structure definition published by Fixer, describing 6 properties, of which 5 are required. It conforms to the https://json-structure.org/draft-00/schema meta-schema.

Properties

success timestamp historical base date rates

Meta-schema: https://json-structure.org/draft-00/schema

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/draft-00/schema",
  "name": "FixerRatesResponse",
  "description": "JSON Structure for a Fixer real-time or historical rates envelope.",
  "type": "object",
  "properties": {
    "success": { "type": "boolean" },
    "timestamp": { "type": "int64" },
    "historical": { "type": "boolean" },
    "base": { "type": "string", "x-format": "iso4217" },
    "date": { "type": "string", "x-format": "date" },
    "rates": {
      "type": "map",
      "values": { "type": "double" }
    }
  },
  "required": ["success", "timestamp", "base", "date", "rates"]
}