get_date_range_data
Retrieve USD/MXN exchange rate data for a specified date range using start and end dates in YYYY-MM-DD format. Customize results by modifying the series ID for different financial indicators.
Instructions
Get exchange rate data for a specific date range.
Args: start_date: Start date in YYYY-MM-DD format end_date: End date in YYYY-MM-DD format series_id: The series ID (default: SF63528 for USD/MXN)
Returns: Exchange rate data for the specified date range
Input Schema
Name | Required | Description | Default |
---|---|---|---|
end_date | Yes | ||
series_id | No | SF63528 | |
start_date | Yes |
Input Schema (JSON Schema)
{
"properties": {
"end_date": {
"title": "End Date",
"type": "string"
},
"series_id": {
"default": "SF63528",
"title": "Series Id",
"type": "string"
},
"start_date": {
"title": "Start Date",
"type": "string"
}
},
"required": [
"start_date",
"end_date"
],
"type": "object"
}