This is the basic operation for finding sales tax rates in the United States. Given a US zip code and a tax type, it returns sales tax information for that zip code. Several pieces of information are returned, starting with basic information about the area. Zip code, city, county, FIPS, and state are returned here.
URL Endpoints
GetTaxInfoByZip_V2 Inputs
| Name | Type | Values | Description |
|---|---|---|---|
| PostalCode | String | Varies | The zip code associated with the desired tax rates |
| TaxType | String | sales / use | Selects the type of tax to look for, for the given area. |
| LicenseKey | String | Varies | Your license key to use the service. Sign up for a free trial key at www.serviceobjects.com. |
GetTaxInfoByZip_V2 Outputs
| Name | Type | Values | Description |
|---|---|---|---|
| Zip | String | Varies | The given zip code |
| City | String | Varies | The city associated with the given zip code |
| County | String | Varies | The county associated with the given zip code |
| CountyFIPS | String | Three digit number | The FIPS code associated with the zip code |
| StateName | String | Varies | The state associated with the give zip code |
| StateAbbreviation | String | Two letter state code | The common two letter state abbreviation |
| TotalTaxRate | String | Decimal digit | The decimal representation of the overall tax rate |
| TotalTaxExempt | String | Varies | The exemptions available for that area. Combinations of Labor/Freight/Services |
| StateRate | String | Decimal digit | The decimal representation of the state’s tax rate |
| CityRate | String | Decimal digit | The decimal representation of the city’s tax rate |
| CountyRate | String | Decimal digit | The decimal representation of the county’s tax rate |
| CountyDistrictRate | String | Decimal digit | The decimal representation of any special district tax rates for the county |
| CityDistrictRate | String | Decimal digit | The decimal representation of any special district tax rates for the city |
| Error | String | Varies | The error object containing information about the error returned. |