GET
/v1/municipalities/{id}/postal-codes
List Postal Codes by Municipality
Returns all postal codes that belong to the given municipality, ordered by code and paginated with 20 results per page.
URL Parameters
| Param | Type | Description |
|---|---|---|
| id | integer | Numeric municipality ID |
Request
curl -H "Authorization: Bearer YOUR_API_KEY" \ https://api.postalkit.mx/v1/municipalities/6/postal-codes
Response
{
"data": [
{
"id": 384,
"code": "06600",
"state": { "id": 1, "name": "Ciudad de México", "code": "09" },
"municipality": { "id": 6, "name": "Cuauhtémoc", "code": "015" },
"city": { "id": 1, "name": "Ciudad de México" }
}
],
"links": { "first": "...", "last": "...", "prev": null, "next": "..." },
"meta": { "current_page": 1, "total": 71, "per_page": 20 }
}
{ "message": "Municipality with id 999 not found." }