Use cases

Building a broadband coverage checker for a service address

A postal code level coverage answer is a good first filter, quick to check and useful for ruling areas in or out immediately, but it is not precise enough for a sales team about to schedule an installation, since coverage within even a single postal code area can vary meaningfully depending on exactly how far a specific property sits from the nearest network cabinet or fiber junction, a detail that matters enormously to whether an installation can actually happen on the timeline a salesperson wants to promise.

An internet provider building a more precise coverage checker for its sales team layered address-level detail on top of the postal code check it already offered on its public website. Once a visitor's postal code check came back positive, indicating the general area was served, the sales-facing version of the tool asked for the full street address and geocoded it through /v1/forward to get an exact coordinate. That coordinate got compared against the provider's own network infrastructure map, built and maintained internally from its buildout records, to give a much more specific answer: not just "this area is served" but an estimate of exactly which network segment would serve that property and what that implied for expected installation timeline and service tier.

This two-stage approach mirrored how a customer's own decision process actually worked. A visitor browsing casually wanted the fast, low-commitment postal code check, happy with a general yes or no before investing more effort. A sales conversation already underway, where a customer was seriously considering signing up, warranted the more detailed address-level check, since by that point both sides benefited from a precise answer rather than a general estimate that might turn out to be wrong for the specific property once an installation crew actually looked at it.

The provider used match confidence from the forward geocoding step as a practical signal for its own sales team too, not just as an internal data quality check. An address that resolved cleanly gave the sales team confidence to quote a specific installation timeline. An address that resolved with lower confidence, common for very new construction not yet fully reflected in mapping data, prompted the sales team to caveat the timeline more carefully or flag the address for a quick manual check against the provider's own most recent buildout records before making any specific promise to the customer.

None of this replaced the provider's own network data, which remained the actual source of truth for what could be installed where. The location lookups solved a narrower, specific problem: turning a customer's typed address reliably into the exact coordinate the provider's own infrastructure map needed to answer the coverage question precisely, rather than relying on a customer's postal code alone or a possibly inconsistent free-text address a sales rep had to interpret by hand.

Volume was concentrated among active sales conversations rather than casual browsing traffic, a smaller and more predictable number than the postal code checker's public traffic, comfortably inside the free daily allowance for the provider's sales team usage.

Documentation for both endpoints is at /docs/forward-geocoding/ and /docs/postal-code-lookup/.