cambio-rate
Retrieve precise currency exchange rates for a specific date using a currency symbol and date input, ensuring accurate financial data from the last available business day for weekends and holidays.
Instructions
Get exchange rates for a specific currency on a specific date
Input Schema
Name | Required | Description | Default |
---|---|---|---|
currency | Yes | Currency symbol (e.g., USD, EUR, GBP) | |
date | Yes | Date in YYYY-MM-DD format. For weekends and holidays, the returned date will be the last available business day. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"currency": {
"description": "Currency symbol (e.g., USD, EUR, GBP)",
"type": "string"
},
"date": {
"description": "Date in YYYY-MM-DD format. For weekends and holidays, the returned date will be the last available business day.",
"type": "string"
}
},
"required": [
"currency",
"date"
],
"type": "object"
}