get_inflation_data
Retrieve inflation data from Banxico by specifying the type (monthly, accumulated, annual) and the number of recent data points. Returns formatted percentages for analysis and decision-making.
Instructions
Get inflation data from Banxico.
Args: inflation_type: Type of inflation data ('monthly', 'accumulated', 'annual') limit: Maximum number of recent data points (default: 12)
Returns: Formatted inflation data with percentages
Input Schema
Name | Required | Description | Default |
---|---|---|---|
inflation_type | No | monthly | |
limit | No |
Input Schema (JSON Schema)
{
"properties": {
"inflation_type": {
"default": "monthly",
"title": "Inflation Type",
"type": "string"
},
"limit": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": 12,
"title": "Limit"
}
},
"type": "object"
}