REST API Overview

Pick the right lookup method for your use case

The Ziptax REST API returns U.S. (and, on supported plans, Canadian) sales tax rates for a given location. Every lookup hits the same base endpoint (GET https://api.zip-tax.com/request/v60) and you choose the lookup method by which query parameter(s) you supply.

Choose a lookup method

Decision guide

If you have…Use
A full customer shipping addressBy Address
Just street + ZIP (no city/state)By Address
Verified geocoded coordinatesBy Lat / Lng
Only a ZIP codeBy Postal Code
A storefront with a known lat/lngBy Lat / Lng

Address and lat/lng lookups return a single door-level rate that has been adjusted for unincorporated areas and special tax jurisdictions. Postal code lookups return every rate that overlaps the ZIP, with no door-level accuracy. Use address or lat/lng for compliant tax calculations.

Authentication

Every request needs an API key. You can supply it two ways, and the header is preferred for production clients.

$curl -H "X-API-Key: YOUR_API_KEY" \
> "https://api.zip-tax.com/request/v60?address=..."

Don’t have an API key yet? Create a free account at platform.zip.tax.

Base URL & versions

1https://api.zip-tax.com/request/v60

The version segment (v60) selects the response shape and feature set. Older versions (v50, v40, and earlier) remain available for backward compatibility. See the API Reference for the full response schema of each version.