This operation returns a unique tax record given a city, state and tax type. It returns the exact same output as the previous operations. 


This operation is a replacement for GetTaxInfoByCityCountyState if county information is not present. It would be good to use if only city and state are available but has a higher likelihood than any other operation of returning multiple records. If more precise information is available, such as zip code it would be recommended to use that. DO NOT USE this operation for Minnesota rates. Minnesota tracks rates by zip code and city and county rates might be different for each city/county based on the zip code.

URL Endpoints

GetTaxInfoByCityState Inputs

NameTypeValuesDescription
CityStringVariesA city name representing the city of the desired tax rate.
StateStringVariesThe state name or abbreviation representing the state of the desired tax rate.
TaxTypeStringsales / useSelects the type of tax to look for, for the given area.
LicenseKeyStringVariesYour license key to use the service.
Sign up for a free trial key at
https://www.serviceobjects.com/fasttax/

GetTaxInfoByCityState Outputs

NameTypeValuesDescription
ZipStringVariesThe given zip code.
CityStringVariesThe city associated with the given zip code.
CountyStringVariesThe county associated with the given zip code.
CountyFIPSStringThree digit numberCounty FIPS(Federal Information Processing Standard) code; used to uniquely 
identify counties across the US.
StateNameStringVariesThe state associated with the give zip code.
StateAbbreviationStringTwo letter state codeThe common two letter state abbreviation.
TotalTaxRateStringDecimal digitThe decimal representation of the overall tax rate.
TotalTaxExemptStringVariesThe exemptions available for that area. Combinations of Labor/Freight/Services.
StateRateStringDecimal digitThe decimal representation of the state’s tax rate.
CityRateStringDecimal digitThe decimal representation of the city’s tax rate.
CountyRateStringDecimal digitThe decimal representation of the county’s tax rate.
CountyDistrictRateStringDecimal digitThe decimal representation of any special district tax rates for the county.
CityDistrictRateStringDecimal digitThe decimal representation of any special district tax rates for the city.
ErrorStringVariesThe error object containing information about the error returned.

References