get_historical_rates
Retrieve historical currency exchange rates for a specific date using base and target currency codes. Perfect for analyzing past financial data and making informed decisions.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
base | No | Base currency code (default: EUR) | |
date | Yes | Date in YYYY-MM-DD format | |
symbols | No | Comma-separated currency codes to limit results |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"base": {
"description": "Base currency code (default: EUR)",
"maxLength": 3,
"minLength": 3,
"type": "string"
},
"date": {
"description": "Date in YYYY-MM-DD format",
"pattern": "^\\d{4}-\\d{2}-\\d{2}$",
"type": "string"
},
"symbols": {
"description": "Comma-separated currency codes to limit results",
"type": "string"
}
},
"required": [
"date"
],
"type": "object"
}