get_latest_rates
Fetch real-time exchange rates for specified currencies using the Frankfurter API. Input a base currency and optional symbols to retrieve up-to-date conversion data.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
base | No | Base currency code (default: EUR) | |
symbols | No | Comma-separated currency codes to limit results (e.g., USD,GBP,JPY) |
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"
},
"symbols": {
"description": "Comma-separated currency codes to limit results (e.g., USD,GBP,JPY)",
"type": "string"
}
},
"type": "object"
}