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

Name Type Values Description
City String Varies A city name representing the city of the desired tax rate.
State String Varies The state name or abbreviation representing the state of the desired tax rate.
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
https://www.serviceobjects.com/fasttax/

GetTaxInfoByCityState 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 County FIPS(Federal Information Processing Standard) code; used to uniquely 
identify counties across the US.
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.

References