exchange_rate
Get current exchange rates between currencies using Alpha Vantage data. Convert from one currency to another for financial calculations and international transactions.
Instructions
Fetch exchange rate
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| from_currency | Yes | ||
| to_currency | Yes |
Input Schema (JSON Schema)
{
"properties": {
"from_currency": {
"type": "string"
},
"to_currency": {
"type": "string"
}
},
"required": [
"from_currency",
"to_currency"
],
"type": "object"
}