ibge-state-search
Retrieve detailed information about Brazilian states using their code or abbreviation (e.g., SP, RJ, 35) through this tool connected to Brazilian public data services.
Instructions
Find information about a Brazilian state by its code or abbreviation
Input Schema
Name | Required | Description | Default |
---|---|---|---|
code | Yes | State code or abbreviation (e.g., SP, RJ, 35) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"code": {
"description": "State code or abbreviation (e.g., SP, RJ, 35)",
"type": "string"
}
},
"required": [
"code"
],
"type": "object"
}