By Postal Code
Look up every sales tax rate that applies inside a U.S. 5-digit ZIP code. Unlike By Address and By Lat / Lng, which each return a single door-level rate, a postal code request returns every applicable rate for each jurisdiction that overlaps the ZIP, with no geocoding and no door-level disambiguation.
Postal code lookups are not door-level accurate. They don’t adjust for unincorporated areas or special tax jurisdictions, and a single ZIP can span multiple cities, counties, and districts. If you need a single authoritative rate for tax collection or compliance filings, use By Address or By Lat / Lng instead.
When to use a postal code lookup
- You only have a ZIP and no street address (e.g. a newsletter signup).
- You’re showing an approximate “rates in your area” summary.
- You’re working with legacy v50-or-earlier integrations that were built around multi-rate postal code responses.
For transactional use (calculating tax on an order, filing returns), always prefer an address or lat/lng lookup.
Endpoint
Send the ZIP in the postalcode query parameter.
Quick example
Parameters
Required
You must also authenticate with your API key via the X-API-Key header
(recommended) or the key query parameter.
Optional
Postal code lookups don’t accept countryCode, taxabilityCode,
adjustment, sat_item_total, or historical. Those parameters
apply only to address and lat/lng lookups. For Canadian rates, use
By Address or By Lat / Lng with
countryCode=CAN.
Example response
Because a ZIP can overlap multiple jurisdictions, the response contains
a results array with one entry per applicable rate:
addressDetail is always null for postal code lookups: there’s no
single address to normalize. If you need a normalized address, use an
address or lat/lng lookup.
Tips & common pitfalls
Preserve leading zeros
Northeastern ZIPs like Boston’s 02101 are strings, not numbers.
If your client library serializes the value as an integer, the
leading zero is stripped and the lookup will fail or return a
different ZIP’s results.
Multiple results per ZIP
Don’t pick the first result blindly. Some ZIPs span two or more cities or special districts. If you must pick one, match on city or county if you have any additional context; otherwise prompt the user or upgrade to an address lookup.
Not for compliance filings
Postal code rates are not adjusted for unincorporated pockets or special district overlays. Using them for tax collection on a real transaction risks under- or over-collecting, both of which create compliance problems. Use address or lat/lng for anything that will end up on a return.
ZIP+4 not supported
Only the 5-digit ZIP is accepted. If you have a ZIP+4, drop the +4
suffix or (better) use the associated street address for a door-level
lookup.
