get_postal_code_v1
Retrieve location details for any Brazilian address using the CEP (postal code). Simplify address validation and geolocation processes by querying accurate data.
Instructions
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"
}