consultar-cep
Retrieve detailed address information in Brazil using an 8-digit postal code (CEP). This tool provides data like street names, neighborhoods, cities, states, regions, and IBGE codes via the ViaCEP API.
Instructions
Query address information from a Brazilian postal code (CEP)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cep | Yes | Postal code to be queried (only numbers, 8 digits) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"cep": {
"description": "Postal code to be queried (only numbers, 8 digits)",
"maxLength": 8,
"minLength": 8,
"pattern": "^\\d+$",
"type": "string"
}
},
"required": [
"cep"
],
"type": "object"
}