FinanceActive
Currency Exchange Rates
Live forex rates from ECB. 30+ currencies supported. Updated every hour. Ideal for financial agents and invoice systems.
Input Schema
{
"type": "object",
"properties": {
"base": {
"type": "string",
"default": "EUR",
"description": "Base currency (e.g. USD, EUR, GBP)"
},
"symbols": {
"type": "array",
"items": {
"type": "string"
},
"description": "Target currencies to return. Empty = all."
}
}
}
Output Schema
{
"type": "object",
"properties": {
"base": {
"type": "string"
},
"date": {
"type": "string",
"format": "date"
},
"rates": {
"type": "object",
"additionalProperties": {
"type": "number"
},
"description": "Map of currency code to exchange rate"
},
"source": {
"type": "string"
}
}
}