Postmon API
Overview
Postmon is a free, open-source API for looking up Brazilian ZIP codes (CEP) and getting structured address information. Simply provide a ZIP code and receive the street name, neighborhood, city, and state — no API key required. It also supports package tracking for select Brazilian carriers.
Beginner Tip
Postmon returns HTTP 404 when a ZIP code is not found instead of an error message in the body, so check the HTTP status code first in your error handling rather than parsing the response body.
Available Data
Example Response
{
"status": "success",
"data": {
"result": "Data from Postmon",
"description": "An API to query Brazilian ZIP codes and orders easily, quickly and free",
"timestamp": "2025-01-15T10:00:00Z"
}
} Field Reference
cep The queried ZIP code in 00000-000 format logradouro Street name or address line for this ZIP code area bairro Neighborhood or district name cidade City name where this ZIP code is located estado Brazilian state abbreviation (e.g., "SP", "RJ", "MG") estado_info Additional state details including full name and area code Implementation Example
const url = "http://postmon.com.br/";
const response = await fetch(url);
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Matrix Score Breakdown
Fully tested on Apr 5, 2026
Technical Specifications
Related Tags
Similar APIs
View All →PostalPinCode
⭐ Beginner's PickPostalPinCode is a free public API that returns postal and address details for any Indian PIN code.
WhatPulse
⭐ Beginner's PickWhatPulse is a free public API that exposes keyboard, mouse, and network usage statistics collected by the WhatPulse desktop application.
Aftership
Aftership is a shipment tracking API that aggregates tracking data from over 900 carriers worldwide into a single unified interface.
Correios
Correios API provides integration with Brazil's national postal service, allowing you to calculate shipping costs, generate shipping labels, and track packages.
Pixela
⭐ Beginner's PickPixela is a fun and lightweight API for tracking habits, daily efforts, and personal goals using pixel-style activity graphs similar to GitHub contribution charts.