get_banxico_reserves_data
Fetch current and historical reserve assets data from Banxico. Specify a limit to retrieve the most recent data points for analysis or reporting purposes.
Instructions
Get Banxico Reserve Assets data.
Args: limit: Maximum number of recent data points (default: 30)
Returns: Current and historical Banxico reserve assets data
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"
}