convert_currency
Convert currency amounts between different currencies using current exchange rates. Enter the amount, source currency, and target currency to get the converted value.
Instructions
Convert an amount from one currency to another using current exchange rates.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
amount | Yes | ||
base_curr | Yes | ||
target_curr | Yes |
Input Schema (JSON Schema)
{
"properties": {
"amount": {
"type": "number"
},
"base_curr": {
"type": "string"
},
"target_curr": {
"type": "string"
}
},
"required": [
"amount",
"base_curr",
"target_curr"
],
"type": "object"
}