get_postal_code_v2
Retrieve location details in Brazil using a CEP (postal code). Input a valid CEP to access accurate address information, enhancing applications with precise Brazilian geographical data.
Instructions
Version 2 of get a location data given a CEP (postal code).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cep | Yes | The CEP to query |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"cep": {
"description": "The CEP to query",
"type": "string"
}
},
"required": [
"cep"
],
"type": "object"
}