Find every address in a postal code
Enter a postal code and get every civic address carrying it, with coordinates. Free, no account.
What this is for
Counting addresses in an area. A postal code with 47 addresses and one with 3 are very different pieces of territory, and knowing which is which changes how you read any per-code statistic.
Checking whether a code straddles a boundary. If every address falls inside one catchment, the postal code answers the catchment question on its own. If they split, you need the street address — and this shows you which situation you are in rather than letting you assume.
Validating a two-field match. Where civic numbers under a code are unique, civic number plus postal code identifies an address. This is how you confirm that holds for the codes you care about.
What an address record is, and is not
An address is an assertion that a civic address exists, made by a source with the authority to say so. It is not a claim that anyone lives there, that the building is occupied, or that a dwelling is habitable.
A vacant lot with an assigned address appears here. A tower with one civic address and 200 units appears once. Counting addresses and counting households give different numbers, and the gap is not error.
Doing this offline
SELECT civic_number, civic_suffix, street_name, street_type,
latitude, longitude, building usage
FROM addresses
WHERE postal_code = 'V3V1Z4'
ORDER BY civic_number; Download the data — it is free — and this runs locally with no rate limit.