get_cetes_28_data
Retrieve current and historical 28-day CETES interest rate data from Banxico. Specify a limit to control the number of recent data points returned for analysis or decision-making.
Instructions
Get CETES 28-day interest rate data from Banxico.
Args: limit: Maximum number of recent data points (default: 30)
Returns: Current and historical CETES 28-day rates
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": 30,
"title": "Limit"
}
},
"type": "object"
}