Loading
Loading
ZIP Codes Radius Search API lets you get every ZIP code and postal code within a geographic radius in a single GET request. Pass a ZIP code or lat/long as the center, set your radius in any of six distance units, and receive a complete paginated list of matching postal codes — each with its exact straight-line distance from the center point.
No geometry libraries. No custom spatial queries. No maintaining a local postal code database. One request to the endpoint handles all of it.
The API covers postal codes from major global postal systems — USPS ZIP codes (United States), Royal Mail postcodes (United Kingdom), Australia Post, India Post PIN codes, and more. One integration works for every market your application serves. If you need to look up details for a single ZIP code rather than search by radius, see the ZIP Code Lookup API.
When a user submits their ZIP code, call this API to retrieve all ZIP codes within your service radius. Filter your locations database against the returned list to show the nearest results — no spatial queries against your own database required.
Before confirming an order, check whether a customer's ZIP code falls within your delivery radius. Make one API call per fulfilment centre, cache the result, and run all order validation against the cached list. To calculate the exact distance between two specific ZIP codes, use the ZIP Code Distance API.
For platforms with multiple depots, stores, or service agents, call the API once per location and union the results to build a complete coverage map. Deduplicate ZIP codes that fall within range of more than one location.
For subscription services, field service scheduling, or any feature that requires confirming a user is within a service area — use the API to generate the allowed ZIP code set once per service location, then check eligibility on each user request. To retrieve all ZIP codes for a specific city instead, use ZIP Codes by City API.
When a user enters a ZIP code during registration or checkout, call the API to return the code's city, region, and country. You can also check neighbouring codes to pre-validate shipping availability before the order is placed.
One GET request to /v1.0/zipcode/search/radius returns every ZIP code within your radius, sorted by distance, with exact distances included. No chaining multiple endpoints, no post-processing geometry, no assembling results from multiple calls.
Use a ZIP code + ISO 3166-1 alpha-2 country code, or a raw lat / long pair, as your center point. Coordinate input removes the need for a separate geocoding call when your application already has a lat/long from an address lookup or GPS signal.
km, mi, yd, m, ft, in — default is km. Set the unit your application logic already works in, so no unit conversion is needed on your end. Maximum radius: 100 km or 100 miles.
Covers all major postal systems: USPS (US), Royal Mail PAF (UK), Australia Post, India Post, Canada Post, and more. Build once, deploy globally — no swapping APIs when your application expands to a new market.
Dense urban areas return thousands of ZIP codes. Each response includes total_results and total_pages. Iterate with the page parameter. No silent result truncation — you always know exactly how many codes exist within the radius.
JSON by default. Pass format=xml for XML. Both formats include the same response fields: code, city, region, region_code, district, and distance from center.
$ pip install requests
| Parameter | Required | Type | Default | Description |
|---|---|---|---|---|
| code | No | String | - | ZIP or postal code to use as the central point. Must be used together with the 'country' parameter. |
| country | No | String | - | Country of the provided ZIP/postal code in ISO 3166-1 alpha-2 format. Required when using 'code' as the central point. |
| lat | No | Float | - | Latitude of the central point. Must be between -90 and 90. Must be provided together with 'long'. |
| long | No | Float | - | Longitude of the central point. Must be between -180 and 180. Must be used together with 'lat'. |
| radius | Yes | Float | - | Distance from the central point. Must be greater than 0 and within the maximum supported range for the selected unit. |
| unit | No | String | km | Distance measuring unit. Allowed values: 'km', 'mi', 'yd', 'm', 'ft' & 'in'. |
| page | No | Number | 1 | Page number of the response. Used when results exceed 500 ZIP/postal codes. |
| format | No | String | json | Response format: 'json' (default) or 'xml'. |
| Distance Measuring Unit | Maximum Radius Size |
|---|---|
| km | 100 |
| mi | 100 |
| yd | 109361 |
| m | 100000 |
| ft | 328084 |
| in | 3937007.75 |
| HTTP Status | Reasons |
|---|---|
| 400 | (1) The specified radius is out of the acceptable range.
(2) Latitude must be between -90 and 90.
(3) Longitude must be between -180 and 180.
(4) The page number must be greater than 0.
(5) Only ISO 3166-1 alpha-2 country codes are supported. |
| 404 | (1) The provided base postal/zip code does not exist in our database.
(2) The requested page exceeds the available page range. |
To retrieve all ZIP codes within a radius, pass code (the center ZIP), country (ISO 3166-1 alpha-2 format), radius, and unit. The response is sorted by distance ascending — the nearest ZIP code is always first in the results array.
# Response { "total_results": 13655, "total_pages": 28, "current_page": 1, "current_page_size": 500, "results": [{ "code": "J5C 1A8", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Mile-End", "distance": 1.21 }, { "code": "J3V 0M9", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Le Plateau-Mont-Royal", "distance": 1.245 }, { "code": "J1N 1E2", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Le Plateau-Mont-Royal", "distance": 1.436 }, { "code": "H1W 3V6", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Quartier des Spectacles", "distance": 1.826 }, { "code": "H1N 3X1", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Ville-Marie", "distance": 1.965 }, { "code": "H1N 3X3", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Ville-Marie", "distance": 1.965 }, { "code": "H1N 3X4", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Ville-Marie", "distance": 1.965 }, { "code": "H1L 3C6", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Ville-Marie", "distance": 2.016 }, { "code": "H1L 6N7", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Ville-Marie", "distance": 2.016 }, { "code": "H1V 1K7", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Ville-Marie", "distance": 2.016 }, { "code": "H1V 1L1", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Ville-Marie", "distance": 2.016 }, { "code": "H1V 3V2", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Ville-Marie", "distance": 2.016 }, { "code": "J5C 1E5", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Le Plateau-Mont-Royal", "distance": 2.023 }, { "code": "H1L 1C6", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Ville-Marie", "distance": 2.067 }, { "code": "H1T 4C2", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Ville-Marie", "distance": 2.067 }, { "code": "H1W 1B5", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 2.067 }, { "code": "H1W 1C5", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Ville-Marie", "distance": 2.067 }, { "code": "H1V 0B7", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Maisonneuve", "distance": 2.295 }, { "code": "H1W 0C3", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Quartier des Spectacles", "distance": 2.307 }, { "code": "H1N 3W3", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Ville-Marie", "distance": 2.544 }, { "code": "H1T 3X1", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Ville-Marie", "distance": 2.544 }, { "code": "H1Y 0B7", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Le Plateau-Mont-Royal", "distance": 2.625 }, { "code": "H1M 1G7", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "La Petite-Patrie", "distance": 2.68 }, { "code": "H1X 1L2", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "La Petite-Patrie", "distance": 2.68 }, { "code": "H1W 1C4", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Westmount", "distance": 2.96 }, { "code": "H1W 1B7", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Westmount", "distance": 2.961 }, { "code": "H1N 2R3", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "La Petite-Patrie", "distance": 2.985 }, { "code": "J5K 0N1", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Le Plateau-Mont-Royal", "distance": 3.006 }, { "code": "H1Y 0C2", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.24 }, { "code": "H1Y 0B9", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.286 }, { "code": "H1Y 3B5", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.291 }, { "code": "H1Y 1N3", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.334 }, { "code": "H1Y 1N1", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.389 }, { "code": "H1Y 1N5", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.407 }, { "code": "H1Y 0A2", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.43 }, { "code": "H1Y 3B6", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.43 }, { "code": "H1Y 3B7", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.43 }, { "code": "H1Y 1M9", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.433 }, { "code": "H1W 0A2", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Le Plateau-Mont-Royal", "distance": 3.437 }, { "code": "H1Y 3A3", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.474 }, { "code": "H1Y 3C8", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.475 }, { "code": "H1Y 1K4", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.476 }, { "code": "H1Y 1K5", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.477 }, { "code": "H1Y 3B8", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.477 }, { "code": "H1Y 1N2", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.485 }, { "code": "H1W 4A4", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont–La Petite-Patrie", "distance": 3.492 }, { "code": "H1Y 1N4", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.501 }, { "code": "H1Y 1N6", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont–La Petite-Patrie", "distance": 3.501 }, { "code": "H1W 3Z8", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.506 }, { "code": "H1Y 1K7", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.512 }, { "code": "H1Y 0C1", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.514 }, { "code": "H1Y 0B5", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.531 }, { "code": "H1Y 0B6", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.531 }, { "code": "H1W 1A1", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.534 }, { "code": "H1Y 1N7", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.549 }, { "code": "H1Y 1H8", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.559 }, { "code": "H1Y 1H9", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.56 }, { "code": "H1Y 1K6", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.56 }, { "code": "H1Y 1K8", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.56 }, { "code": "H1Y 3A4", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.56 }, { "code": "H1Y 3A5", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.56 }, { "code": "H1Y 3B9", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.56 }, { "code": "H1Y 3C1", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.56 }, { "code": "H1Y 3C2", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.571 }, { "code": "H1Y 3C3", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.571 }, { "code": "H1Y 1N8", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.572 }, { "code": "H1Y 1J1", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.595 }, { "code": "H1Y 1L1", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.599 }, { "code": "H1Y 1K9", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.608 }, { "code": "H1Y 3A7", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.623 }, { "code": "H1Y 1N9", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.632 }, { "code": "H1Y 1P1", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.632 }, { "code": "H1Y 1J2", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.641 }, { "code": "H1Y 3A6", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.641 }, { "code": "H1Y 1J3", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.653 }, { "code": "H1Y 1L2", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.679 }, { "code": "H1Y 3A9", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.689 }, { "code": "H1Y 1P2", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.691 }, { "code": "H1Y 1P3", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.702 }, { "code": "H1Y 1G2", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.703 }, { "code": "H1Y 1P4", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.704 }, { "code": "H1Y 3A8", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.71 }, { "code": "H1Y 1L4", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.716 }, { "code": "H1Y 1J4", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.723 }, { "code": "H1Y 3C4", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.725 }, { "code": "H1Y 1L3", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.727 }, { "code": "G3S 1J1", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Glenmount", "distance": 3.729 }, { "code": "G3S 1J2", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Glenmount", "distance": 3.729 }, { "code": "G3S 1J3", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Glenmount", "distance": 3.729 }, { "code": "G3S 1J4", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Glenmount", "distance": 3.729 }, { "code": "G3S 1J5", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Glenmount", "distance": 3.729 }, { "code": "G3S 1J6", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Glenmount", "distance": 3.729 }, { "code": "G3S 1J7", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Glenmount", "distance": 3.729 }, { "code": "G3S 1J8", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Glenmount", "distance": 3.729 }, { "code": "G3S 1J9", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Glenmount", "distance": 3.729 }, { "code": "H1Y", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.734 }, { "code": "H1Y 0A1", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.734 }, { "code": "H1Y 0A3", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.752 }, { "code": "H1Y 0A7", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.752 }, { "code": "H1Y 0A8", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.752 }, { "code": "H1Y 1J5", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.759 }, { "code": "H1Y 1P5", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.763 }, { "code": "H1W 1B1", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 3.768 }, { "code": "H1Y 1G3", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.793 }, { "code": "H1Y 0A5", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.799 }, { "code": "H1Y 0A6", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.799 }, { "code": "H1Y 0A9", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.799 }, { "code": "H1Y 0B1", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.799 }, { "code": "H1Y 0B2", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.799 }, { "code": "H1Y 0B3", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.799 }, { "code": "H1Y 1L5", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.8 }, { "code": "H1E 4B7", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.804 }, { "code": "H1Y 1G4", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.804 }, { "code": "H1Y 1G5", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.804 }, { "code": "H1Y 1L6", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.811 }, { "code": "H1Y 1G1", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.815 }, { "code": "H1W 1G1", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 3.831 }, { "code": "H1Y 1P6", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.833 }, { "code": "H1Y 1P7", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.833 }, { "code": "H1Y 1C6", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.835 }, { "code": "H1Y 1P8", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.846 }, { "code": "H1W 0B4", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.851 }, { "code": "H1W 1B4", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 3.859 }, { "code": "H1Y 1G6", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.872 }, { "code": "H1Y 1L7", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.872 }, { "code": "H1Y 1L8", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.872 }, { "code": "H1W 1G2", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 3.887 }, { "code": "H1Y 1J8", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.901 }, { "code": "H1Y 1C5", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.909 }, { "code": "H1Y 3C5", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.909 }, { "code": "H1Y 1J9", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.914 }, { "code": "H1Y 1K1", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.914 }, { "code": "H1Y 1G7", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.917 }, { "code": "H1Y 1C7", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.921 }, { "code": "H1Y 1L9", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.922 }, { "code": "H1W 1A2", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.929 }, { "code": "H1Y 1M1", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.933 }, { "code": "H1Y 3C6", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.946 }, { "code": "H1Y 3C7", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.946 }, { "code": "H1Y 1G8", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.951 }, { "code": "H1Y 1M2", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.959 }, { "code": "H1Y 3B1", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.962 }, { "code": "H1Y 3B2", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.962 }, { "code": "H1W 1B2", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.968 }, { "code": "H1Y 1C8", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.985 }, { "code": "H1Y 1C9", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.985 }, { "code": "H1W 0A3", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 3.986 }, { "code": "H1W 3Z2", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 3.986 }, { "code": "H1W 3Z5", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 3.986 }, { "code": "H1Y 1M4", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 3.994 }, { "code": "H1W 1B6", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 3.998 }, { "code": "H1W 0B5", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.001 }, { "code": "H1W 1A6", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.001 }, { "code": "H1W 1A3", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.019 }, { "code": "H1Y 1H1", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.02 }, { "code": "H1W 1H1", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.045 }, { "code": "H1Y 1E1", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.05 }, { "code": "H1W 1A4", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.055 }, { "code": "H1Y 1M3", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.055 }, { "code": "H1W 1K6", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.067 }, { "code": "H1W 3W7", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.067 }, { "code": "H1W 1G3", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.069 }, { "code": "H1W 1B8", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.077 }, { "code": "H1Y 1K2", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.104 }, { "code": "H1Y 1A1", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.111 }, { "code": "H1Y 1A2", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.111 }, { "code": "H1V 3T2", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.114 }, { "code": "H1V 3T7", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Maisonneuve", "distance": 4.114 }, { "code": "H1V 3V9", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Maisonneuve", "distance": 4.114 }, { "code": "H1Y 1M5", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.117 }, { "code": "H1Y 1A4", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.121 }, { "code": "H1Y 1H2", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.123 }, { "code": "H1Y 1E2", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.126 }, { "code": "H1Y 1E3", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.126 }, { "code": "H1Y 1M6", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.128 }, { "code": "H1Y 1H3", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.136 }, { "code": "H1W 1B9", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.148 }, { "code": "H1X 1T9", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.15 }, { "code": "H1W 1C1", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.157 }, { "code": "H1X 1R4", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.16 }, { "code": "H1W 1G4", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.178 }, { "code": "H1Y 1A3", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.183 }, { "code": "H1Y 3B3", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.183 }, { "code": "H1Y 3B4", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.183 }, { "code": "H1X 1R2", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.184 }, { "code": "H1X 1V1", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.191 }, { "code": "H1W 1G6", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.192 }, { "code": "H1W 1K8", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.195 }, { "code": "H1X 1R3", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.197 }, { "code": "H1X 1W3", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.2 }, { "code": "H1Y 1M7", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.202 }, { "code": "H1Y 1A6", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.204 }, { "code": "H1Y 1H4", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.204 }, { "code": "H1X 1M5", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.213 }, { "code": "H1Y 1M8", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.213 }, { "code": "H1W 1A5", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.222 }, { "code": "H1W 1C2", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.223 }, { "code": "H1X 1K2", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.226 }, { "code": "H1W 1C3", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.236 }, { "code": "H1W 1K7", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.236 }, { "code": "H1A 5P7", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Côte-des-Neiges–Notre-Dame-de-Grâce", "distance": 4.241 }, { "code": "H1W 1G7", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.248 }, { "code": "H1Y 1E4", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.248 }, { "code": "H1X 1H8", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.249 }, { "code": "H1Y 1K3", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.249 }, { "code": "H1X 1V3", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.252 }, { "code": "H1Y 1A5", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.256 }, { "code": "H1Y 1A7", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.256 }, { "code": "H1W 0B1", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.262 }, { "code": "H1W 0B2", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.262 }, { "code": "H1W 0B3", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.262 }, { "code": "H1W 0B6", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.262 }, { "code": "H1Y 1H5", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.262 }, { "code": "H1X 1K1", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.263 }, { "code": "H1X 1W5", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.264 }, { "code": "H1X 1W7", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.264 }, { "code": "H1Y 1C1", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.264 }, { "code": "H1Y 1C2", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.264 }, { "code": "H1X 1R5", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.268 }, { "code": "H1W 3Z9", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.272 }, { "code": "H1Y 1B8", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.279 }, { "code": "H1Y 1B9", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.279 }, { "code": "H1W 1G9", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.283 }, { "code": "H1Y 1C3", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.283 }, { "code": "H1Y 1C4", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.283 }, { "code": "H1X 1M6", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.286 }, { "code": "H1X 1M7", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.286 }, { "code": "H1Y 1A8", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.287 }, { "code": "H1X 1R7", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.291 }, { "code": "H1Y 1E5", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.303 }, { "code": "H1W 3B2", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.308 }, { "code": "H1W 1C6", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.311 }, { "code": "H1Y 1E6", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.314 }, { "code": "H1Y 1A9", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.319 }, { "code": "H1Y 1H7", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.322 }, { "code": "H1X 1R6", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.325 }, { "code": "H1W 1G8", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.326 }, { "code": "H1W 3Y7", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.328 }, { "code": "H1X 1V4", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.333 }, { "code": "H1X 1K3", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.337 }, { "code": "H1W 1L1", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.338 }, { "code": "H1X 1K5", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.338 }, { "code": "H1Y 1H6", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.344 }, { "code": "H1W 1K9", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.345 }, { "code": "H1X 1M8", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.346 }, { "code": "H1W 3X4", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.348 }, { "code": "G7A 0V5", "region": "Quebec", "region_code": "QC", "city": "Saint-Nicolas", "district": "Lévis", "distance": 4.349 }, { "code": "G7A 0V6", "region": "Quebec", "region_code": "QC", "city": "Saint-Nicolas", "district": "Lévis", "distance": 4.349 }, { "code": "G7A 0V7", "region": "Quebec", "region_code": "QC", "city": "Saint-Nicolas", "district": "Lévis", "distance": 4.349 }, { "code": "G7A 0V9", "region": "Quebec", "region_code": "QC", "city": "Saint-Nicolas", "district": "Lévis", "distance": 4.349 }, { "code": "G7A 0W1", "region": "Quebec", "region_code": "QC", "city": "Saint-Nicolas", "district": "Lévis", "distance": 4.349 }, { "code": "G7A 0W2", "region": "Quebec", "region_code": "QC", "city": "Saint-Nicolas", "district": "Lévis", "distance": 4.349 }, { "code": "G7A 0W4", "region": "Quebec", "region_code": "QC", "city": "Saint-Nicolas", "district": "Lévis", "distance": 4.349 }, { "code": "G7A 0W5", "region": "Quebec", "region_code": "QC", "city": "Saint-Nicolas", "district": "Lévis", "distance": 4.349 }, { "code": "G7A 0X7", "region": "Quebec", "region_code": "QC", "city": "Saint-Nicolas", "district": "Lévis", "distance": 4.354 }, { "code": "G7A 0X8", "region": "Quebec", "region_code": "QC", "city": "Saint-Nicolas", "district": "Lévis", "distance": 4.354 }, { "code": "H1X 1M9", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.357 }, { "code": "H1X 1H9", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.358 }, { "code": "H1W 0A8", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.364 }, { "code": "H1Y 1E7", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.37 }, { "code": "H1W 3Y6", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.372 }, { "code": "H1X 1K4", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.374 }, { "code": "H1W 3B3", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.376 }, { "code": "H1W 1C7", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.377 }, { "code": "H1W 1C9", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.377 }, { "code": "H1W 3B1", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.377 }, { "code": "H1W 3E1", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.39 }, { "code": "H1W 3X3", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.397 }, { "code": "H1W 3A9", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.4 }, { "code": "J4N 0A2", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Pointe-Saint-Charles", "distance": 4.402 }, { "code": "H1W 1H2", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.403 }, { "code": "H1Y 1E9", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.404 }, { "code": "H1X 1N1", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.406 }, { "code": "H1X 1R8", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.409 }, { "code": "H1X 1K6", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.412 }, { "code": "H1V 1P3", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.416 }, { "code": "H1X 1N2", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.419 }, { "code": "H1W 1A7", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.426 }, { "code": "H1X 1G4", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.426 }, { "code": "H1Y 1B3", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.435 }, { "code": "H1Y 1B5", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.435 }, { "code": "H1W 1C8", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.444 }, { "code": "H1Y 1B4", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Saint-Michel", "distance": 4.446 }, { "code": "H1Y 1E8", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.449 }, { "code": "H1W 3E2", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.456 }, { "code": "H1W 3C8", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.457 }, { "code": "H1W 1A8", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.462 }, { "code": "H1W 3H2", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.462 }, { "code": "H1W 3H3", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.462 }, { "code": "H1W 3Y1", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.462 }, { "code": "H1W 1E1", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.466 }, { "code": "H1X 1R9", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.469 }, { "code": "H1X 1K7", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.471 }, { "code": "H1W 1H3", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.473 }, { "code": "H1W 1H4", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.473 }, { "code": "H1W 3A7", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.473 }, { "code": "H1X 1S1", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.48 }, { "code": "H1W 1H5", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.487 }, { "code": "H1W 3Y8", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.488 }, { "code": "H1X 1N3", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.489 }, { "code": "H1X 1N4", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.492 }, { "code": "H1X 1G5", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.497 }, { "code": "H1X 1G6", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.497 }, { "code": "H1X 1K8", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.5 }, { "code": "H1Y 1B6", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Saint-Michel", "distance": 4.5 }, { "code": "H1W 3X8", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.501 }, { "code": "H1X 1N6", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.502 }, { "code": "H1W 1E2", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.523 }, { "code": "H1W 3G9", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.523 }, { "code": "H1W 3H1", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.523 }, { "code": "H1X 1C5", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.528 }, { "code": "H1X 1C6", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.528 }, { "code": "H1W 3X6", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.53 }, { "code": "H1X 1S2", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.54 }, { "code": "H1X 1V2", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.541 }, { "code": "H1Y 1B7", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.542 }, { "code": "H1W 3C9", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.546 }, { "code": "H1W 3J9", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.548 }, { "code": "H1X 1V5", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.551 }, { "code": "H1W 1H6", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.552 }, { "code": "H1W 1H8", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.552 }, { "code": "H1W 3C6", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.552 }, { "code": "H1X 1S3", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.553 }, { "code": "H1W 3Z1", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.554 }, { "code": "H1W 3A8", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.557 }, { "code": "H1W 3K1", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.575 }, { "code": "H1X 1N5", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.575 }, { "code": "H1X 1G7", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.58 }, { "code": "H1X 1G8", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.58 }, { "code": "H1X 1J2", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.589 }, { "code": "H1X 0A3", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.593 }, { "code": "H1X 0A4", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.593 }, { "code": "H1X 1C7", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.596 }, { "code": "H1X 1C8", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.596 }, { "code": "H1W 1E3", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.597 }, { "code": "H1X 1W6", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.602 }, { "code": "H1W 1E4", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.606 }, { "code": "H1W 1E5", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.606 }, { "code": "H1W 3J7", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.606 }, { "code": "H1X 1Z9", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.606 }, { "code": "H1X 1K9", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.61 }, { "code": "H1W 1H7", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.614 }, { "code": "H1W 3G8", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.622 }, { "code": "H1X 1L1", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.623 }, { "code": "H1X 1S5", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.624 }, { "code": "H1X 1V6", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.624 }, { "code": "H1X 1V7", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.624 }, { "code": "H1X 1Z8", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.624 }, { "code": "H1X 1W8", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.626 }, { "code": "H1X 1A1", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.628 }, { "code": "H1W 3C7", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.631 }, { "code": "H1X 1S4", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.637 }, { "code": "H1W 3X5", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.639 }, { "code": "H1W 3C5", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.643 }, { "code": "H1X 1N7", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.659 }, { "code": "H1X 1N8", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.659 }, { "code": "H1X 1A2", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.661 }, { "code": "H1X 1G9", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.662 }, { "code": "H1W", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.665 }, { "code": "H1X 1C9", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.665 }, { "code": "H1X 1A3", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.672 }, { "code": "H1X 1E1", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.676 }, { "code": "H1W 1J1", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.687 }, { "code": "H1W 3L5", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.69 }, { "code": "H1W 3J8", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.693 }, { "code": "H1X 1N9", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.695 }, { "code": "H1X 1V8", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.698 }, { "code": "H1X 2A2", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.704 }, { "code": "H1W 1H9", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.706 }, { "code": "H1W 3G7", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.706 }, { "code": "H1W 3J5", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.706 }, { "code": "H1X 1S6", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.708 }, { "code": "H1X 1V9", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.708 }, { "code": "H1X 1L3", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.709 }, { "code": "H1X 1Y6", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.711 }, { "code": "H1W 3G6", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.712 }, { "code": "H1X 1S7", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.718 }, { "code": "H1X 1A4", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Saint-Michel", "distance": 4.727 }, { "code": "H1X 1H1", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.735 }, { "code": "H1X 1H2", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.735 }, { "code": "H1W 0A9", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont–La Petite-Patrie", "distance": 4.739 }, { "code": "H1X 1E2", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.745 }, { "code": "H1X 1P1", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.745 }, { "code": "H1X 1E3", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.757 }, { "code": "H1X 1W9", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.76 }, { "code": "H1W 3C4", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.762 }, { "code": "H1W 3Y9", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.77 }, { "code": "H1X 1W1", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.775 }, { "code": "H1W 3C3", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.776 }, { "code": "H1X 1S8", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.776 }, { "code": "H1X 1L5", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.782 }, { "code": "H1X 1X1", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.783 }, { "code": "H1X 1Z7", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.783 }, { "code": "H1X 1S9", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.786 }, { "code": "H1X 1W2", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.788 }, { "code": "H1X 1P2", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.792 }, { "code": "H1W 1J2", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.793 }, { "code": "H1W 1J3", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.793 }, { "code": "H1X 1A6", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.793 }, { "code": "H1W 3J4", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.794 }, { "code": "H1W 3J6", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.794 }, { "code": "H1X 1A5", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Saint-Michel", "distance": 4.804 }, { "code": "H1W 3C2", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.808 }, { "code": "H1W 3C1", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.814 }, { "code": "H1X 1C2", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.815 }, { "code": "H1X 1C3", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.815 }, { "code": "H1X 1C4", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.817 }, { "code": "H1X 1P3", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.818 }, { "code": "H1W 3G5", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.823 }, { "code": "H1X 0A1", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.823 }, { "code": "H1X 0A2", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.823 }, { "code": "H1X 1X2", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.823 }, { "code": "H1W 3G4", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.827 }, { "code": "H1W 3Y3", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.83 }, { "code": "H1W 3B8", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.836 }, { "code": "H1X 1A7", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.837 }, { "code": "H1X 1E4", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.837 }, { "code": "H1X 1E5", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.837 }, { "code": "H1X 1Y9", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.839 }, { "code": "H1X 1X9", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.846 }, { "code": "H1X 1L4", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.847 }, { "code": "H1X 1J9", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.848 }, { "code": "H1X 1J3", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.852 }, { "code": "H1X 1T1", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.852 }, { "code": "H1X 1Y7", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.852 }, { "code": "H1W 3B9", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.853 }, { "code": "H1W 3L4", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.857 }, { "code": "H1X 1X3", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.857 }, { "code": "H1T 3X9", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.86 }, { "code": "H1W 3X9", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.862 }, { "code": "H1X 1T2", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.865 }, { "code": "H1W 3G3", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.874 }, { "code": "H1W 3M7", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.875 }, { "code": "H1X 1P4", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.875 }, { "code": "H1X 2A3", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.878 }, { "code": "H1W 3Y2", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.879 }, { "code": "H1W 1J4", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.88 }, { "code": "H1X 1A8", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Saint-Michel", "distance": 4.881 }, { "code": "H1W 3L2", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.885 }, { "code": "H1W 3L3", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.885 }, { "code": "H1X 1P5", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.888 }, { "code": "H1X 1T4", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.888 }, { "code": "H1W 3Y5", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.89 }, { "code": "H1S 3G5", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Le Triangle", "distance": 4.893 }, { "code": "H1W 3J3", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.894 }, { "code": "H1W 3G2", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.897 }, { "code": "H1W 3P7", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.898 }, { "code": "H1W 3P5", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.899 }, { "code": "H1W 3P6", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.899 }, { "code": "H1W 3Y4", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.9 }, { "code": "H1X 1Y1", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.9 }, { "code": "H1W 3G1", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.902 }, { "code": "H1X 1J8", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.902 }, { "code": "H1Y 1J6", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.902 }, { "code": "H1W 3E9", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.903 }, { "code": "H1W 3J2", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.91 }, { "code": "H1W 3B7", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.917 }, { "code": "H1X 1J4", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.919 }, { "code": "H1X 1X4", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.92 }, { "code": "H1X 1Z1", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.921 }, { "code": "H1X 1Z2", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.921 }, { "code": "H1X 2A4", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.923 }, { "code": "H1X 1P7", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.925 }, { "code": "H1X 1Z3", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.925 }, { "code": "H1X 1B1", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.926 }, { "code": "H1W 1J6", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.929 }, { "code": "H1X 1T3", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.938 }, { "code": "H1X 1T6", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.938 }, { "code": "H1W 3B6", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.941 }, { "code": "H1X 1L6", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.945 }, { "code": "H1W 3S6", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.946 }, { "code": "H1X 1Y2", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.946 }, { "code": "H1X 2A5", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.946 }, { "code": "H1X 1A9", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Saint-Michel", "distance": 4.959 }, { "code": "H1W 3S7", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.96 }, { "code": "H1X 1P6", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.961 }, { "code": "H1W 3M6", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.962 }, { "code": "H1X", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.967 }, { "code": "H1W 3S5", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.971 }, { "code": "H1X 1L7", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.971 }, { "code": "H1W 3J1", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.973 }, { "code": "H1W 3E7", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.976 }, { "code": "H1X 1X5", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.977 }, { "code": "H1W 1J5", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.981 }, { "code": "H1W 3P3", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.981 }, { "code": "H1X 1L8", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.981 }, { "code": "H1X 1X6", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.981 }, { "code": "H1W 3E8", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.982 }, { "code": "H1W 3P4", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.983 }, { "code": "H1X 1H3", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.986 }, { "code": "H1X 1Z6", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.989 }, { "code": "H1W 3H8", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.99 }, { "code": "H1X 2A6", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.992 }, { "code": "H1W 3E6", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.994 }, { "code": "H1W 3T1", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.994 }, { "code": "H1W 4A3", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.994 }, { "code": "H1W 3M5", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.995 }, { "code": "H1W 3K8", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Hochelaga", "distance": 4.998 }, { "code": "H1X 1T5", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 4.999 }, { "code": "H1X 1E6", "region": "Quebec", "region_code": "QC", "city": "Urban agglomeration of Montreal", "district": "Rosemont", "distance": 5.0 }] }curl --location 'https://api.apifreaks.com/v1.0/zipcode/search/radius?code=H2V%201Z7&country=CA&radius=5&unit=km' \ --header 'X-apiKey: API-KEY'
If total_pages >1, iterate using the page parameter:
curl --location 'https://api.apifreaks.com/v1.0/zipcode/search/radius?code=H2V%201Z7&country=CA&radius=5&unit=km&page=2' \ --header 'X-apiKey: API-KEY'
Use lat and long instead of code and country when your application has a coordinate rather than a postal code — for example, after a geocoding call, a map click, or a GPS reading.
curl 'https://api.apifreaks.com/v1.0/zipcode/search/radius?lat=40.7580&long=-73.9855&radius=10&unit=mi' \ --header 'X-apiKey: YOUR_API_KEY'
Loop over your depot or store ZIP codes, union the results, and deduplicate. ZIP codes within range of multiple locations appear in multiple API responses — deduplicate before caching.
import requests
API_KEY = "YOUR_API_KEY"
BASE_URL = "https://api.apifreaks.com/v1.0/zipcode/search/radius"
def get_zone(zip_code, country, radius, unit="mi"):
all_zips = set()
page = 1
while True:
r = requests.get(BASE_URL, headers={"X-apiKey": API_KEY}, params={
"code": zip_code, "country": country,
"radius": radius, "unit": unit, "page": page
})
data = r.json()
all_zips.update(result["code"] for result in data["results"])
if page {'>'}= data["total_pages"]:
break
page += 1
return all_zips
depots = [("10001", "US"), ("60601", "US"), ("90210", "US")]
coverage = set()
for zip_code, country in depots:
coverage |= get_zone(zip_code, country, radius=25)
The Google Maps API has no endpoint that returns a list of ZIP codes within a radius. The standard Google Maps approach requires:
With the APIFreaks ZIP Codes Inside Radius API, the same result is a single authenticated GET request:
curl 'https://api.apifreaks.com/v1.0/zipcode/search/radius?code=10001&country=US&radius=10&unit=mi' \ --header 'X-apiKey: YOUR_API_KEY'
The response includes the full sorted ZIP code list, distances, city and region data, and pagination metadata — with no additional code required.
To use the ZIP Codes inside Radius API, API credits are required. Charges apply only for successful queries, defined by a 2xx status code. If a request results in a 4xx or 5xx status code, no credits will be deducted, and any credits already charged will be refunded.
For each successful request, 3 credit will be charged. Utilize the Credits Usage API to efficiently monitor your recent consumption of both one-off and subscription credits. This API provides a streamlined way to track and manage your credit usage, ensuring you stay informed about your remaining balance and can optimize your resource allocation effectively.
Make a GET request to https://api.apifreaks.com/v1.0/zipcode/search/radius with a center ZIP code (or lat/long), a radius value, and a unit. The response returns every matching ZIP code sorted by distance, with exact distances included. If total_pages is greater than 1, paginate using the page parameter.
Each response returns up to 500 ZIP codes. The response body includes total_results and total_pages. Request additional pages by passing the page parameter. There is no silent truncation — total_results always reflects the full count of ZIP codes within the radius.
Yes. Use lat and long parameters instead of code and country. This is useful when your application already has a coordinate from a geocoder, a map interaction, or a device GPS — it removes the need for a separate reverse-geocoding step.