cep-search
Retrieve address details in Brazil by querying a postal code (CEP) using a structured API input. Ideal for integrating location data into applications or systems.
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"
}