Fixer · Schema

Fixer Symbols Response

Envelope returned by /symbols listing every supported currency code and its full name.

Currency ExchangeForeign ExchangeFXForexECBConversionHistorical RatesTime SeriesFluctuationAPILayerPublic APIs

Properties

Name Type Description
success boolean
symbols object Map of ISO 4217 currency code to currency name.
View JSON Schema on GitHub

JSON Schema

fixer-symbols-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/fixer/json-schema/fixer-symbols-schema.json",
  "title": "Fixer Symbols Response",
  "description": "Envelope returned by /symbols listing every supported currency code and its full name.",
  "type": "object",
  "required": ["success", "symbols"],
  "properties": {
    "success": {
      "type": "boolean"
    },
    "symbols": {
      "type": "object",
      "description": "Map of ISO 4217 currency code to currency name.",
      "additionalProperties": {
        "type": "string"
      }
    }
  }
}