Skip to main content
GET
/
v1
/
zipcodes
/
{id}
Get zipcode information
curl --request GET \
  --url https://api-sandbox.rinne.com.br/core/v1/zipcodes/{id} \
  --header 'Authorization: Bearer <token>'
{
  "zipcode": "13306582",
  "street": "Rua Ana Rosa de Jesus dos Santos",
  "neighborhood": "Jardim Villas do Golf",
  "city": "Itu",
  "state": "SP"
}

Documentation Index

Fetch the complete documentation index at: https://docs.rinne.com.br/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

JWT token for user authentication

Path Parameters

id
string
required

The zipcode to lookup (5-9 digits)

Pattern: ^[0-9]{5,9}$

Response

Zipcode information retrieved successfully

zipcode
string
required
Example:

"13306582"

street
string
required
Example:

"Rua Ana Rosa de Jesus dos Santos"

neighborhood
string
required
Example:

"Jardim Villas do Golf"

city
string
required
Example:

"Itu"

state
string
required
Example:

"SP"