get_unemployment_data
Retrieve current and historical unemployment rate data from Banxico. Specify a limit to fetch recent data points, defaulting to 24 (2 years of monthly data).
Instructions
Get unemployment rate data from Banxico.
Args: limit: Maximum number of recent data points (default: 24 for 2 years of monthly data)
Returns: Current and historical unemployment rate data
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": 24,
"title": "Limit"
}
},
"type": "object"
}