Currencylayer · Schema

Currencylayer Currencies Response

Envelope returned by /list containing every supported ISO 4217 currency code mapped to its full name.

Currency ExchangeForeign ExchangeFXForexConversionHistorical RatesTime FrameChange ReportPrecious MetalsAPILayerPublic APIs

Properties

Name Type Description
success boolean
terms string
privacy string
currencies object Map of ISO 4217 code to currency display name.
View JSON Schema on GitHub

JSON Schema

currencylayer-currencies-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/currencylayer/json-schema/currencylayer-currencies-schema.json",
  "title": "Currencylayer Currencies Response",
  "description": "Envelope returned by /list containing every supported ISO 4217 currency code mapped to its full name.",
  "type": "object",
  "required": ["success", "currencies"],
  "properties": {
    "success": { "type": "boolean" },
    "terms": { "type": "string", "format": "uri" },
    "privacy": { "type": "string", "format": "uri" },
    "currencies": {
      "type": "object",
      "description": "Map of ISO 4217 code to currency display name.",
      "additionalProperties": { "type": "string" }
    }
  }
}