consultar_terminais_atm
Query ATM terminal statistics by quarter from Brazil's Central Bank data to analyze self-service terminal distribution and usage patterns across regions.
Instructions
Consulta estatísticas sobre terminais de autoatendimento (ATM/caixas eletrônicos) por trimestre.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| trimestre | Yes | Ano e trimestre no formato YYYYQ (exemplo: '20234') | |
| top | No | Número máximo de registros a retornar (padrão: 100) | |
| filtro | No | Filtro OData para refinar a consulta |
Input Schema (JSON Schema)
{
"properties": {
"filtro": {
"description": "Filtro OData para refinar a consulta",
"type": "string"
},
"top": {
"description": "Número máximo de registros a retornar (padrão: 100)",
"type": "number"
},
"trimestre": {
"description": "Ano e trimestre no formato YYYYQ (exemplo: '20234')",
"type": "string"
}
},
"required": [
"trimestre"
],
"type": "object"
}