Open Exchange Rates · Schema
ExchangeRatesResponse
Standard response object for latest and historical exchange rate endpoints
Foreign ExchangeCurrencyExchange RatesFXCurrency ConversionForexFinancial Data
Properties
| Name | Type | Description |
|---|---|---|
| disclaimer | string | Legal disclaimer URL for data usage terms |
| license | string | URL of the data license |
| timestamp | integer | Unix timestamp (UTC) when rates were last published |
| base | string | 3-letter ISO currency code of the base currency |
| rates | object | Map of 3-letter ISO currency codes to exchange rates relative to base |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://raw.githubusercontent.com/api-evangelist/open-exchange-rates/main/json-schema/exchange-rates-response.json",
"title": "ExchangeRatesResponse",
"description": "Standard response object for latest and historical exchange rate endpoints",
"type": "object",
"required": ["disclaimer", "license", "timestamp", "base", "rates"],
"properties": {
"disclaimer": {
"type": "string",
"description": "Legal disclaimer URL for data usage terms",
"example": "Usage subject to terms: https://openexchangerates.org/terms"
},
"license": {
"type": "string",
"description": "URL of the data license",
"example": "https://openexchangerates.org/license"
},
"timestamp": {
"type": "integer",
"description": "Unix timestamp (UTC) when rates were last published",
"example": 1686614400
},
"base": {
"type": "string",
"description": "3-letter ISO currency code of the base currency",
"minLength": 3,
"maxLength": 3,
"example": "USD"
},
"rates": {
"type": "object",
"description": "Map of 3-letter ISO currency codes to exchange rates relative to base",
"additionalProperties": {
"type": "number",
"minimum": 0,
"description": "Exchange rate relative to the base currency"
},
"example": {
"EUR": 0.924123,
"GBP": 0.787456,
"JPY": 139.825000,
"CAD": 1.330200
}
}
}
}
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/exchange-rates-response"
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.