Fixer · Schema
Fixer Rates Response
Envelope returned by /latest and /{date} containing real-time or historical end-of-day exchange rates.
Currency ExchangeForeign ExchangeFXForexECBConversionHistorical RatesTime SeriesFluctuationAPILayerPublic APIs
Properties
| Name | Type | Description |
|---|---|---|
| success | boolean | Indicates whether the request succeeded. |
| timestamp | integer | Unix timestamp (seconds) when the rates were published. |
| historical | boolean | Present and true when the response represents historical rates. |
| base | string | ISO 4217 base currency code anchoring the rate set. |
| date | string | Date the rates apply to (YYYY-MM-DD). |
| rates | object | Map of ISO 4217 currency code to exchange rate against the base currency. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://api-evangelist.github.io/fixer/json-schema/fixer-rates-schema.json",
"title": "Fixer Rates Response",
"description": "Envelope returned by /latest and /{date} containing real-time or historical end-of-day exchange rates.",
"type": "object",
"required": ["success", "timestamp", "base", "date", "rates"],
"properties": {
"success": {
"type": "boolean",
"description": "Indicates whether the request succeeded."
},
"timestamp": {
"type": "integer",
"description": "Unix timestamp (seconds) when the rates were published."
},
"historical": {
"type": "boolean",
"description": "Present and true when the response represents historical rates."
},
"base": {
"type": "string",
"description": "ISO 4217 base currency code anchoring the rate set.",
"pattern": "^[A-Z]{3}$"
},
"date": {
"type": "string",
"format": "date",
"description": "Date the rates apply to (YYYY-MM-DD)."
},
"rates": {
"type": "object",
"description": "Map of ISO 4217 currency code to exchange rate against the base currency.",
"additionalProperties": {
"type": "number"
}
}
}
}
Work with this as data
Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for schemas
4 MCP tools reach this
find_json_schemasBrowse and filter every JSON Schema in the catalog.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.
Call it yourself
curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/fixer-rates"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.