Property Tax API
The Property Tax API allows you to retrieve property tax rates for different locations in the United States by specifying parameters such as state, county, city, or zip. You can input location details and retrieve corresponding effective property tax rates.
From 4,229 users
Applications using this API
API Status
API Response Times
Average | P50 | P75 | P90 | P95 |
|---|---|---|---|---|
| 305ms | 328ms | 396ms | 531ms | 1080ms |
Similar APIs
Didn't find what you were looking for? Suggest an improvement
/v1/propertytax GET
https://api.api-ninjas.com/v1/zipcode
Returns a list of regions and corresponding 25th, 50th (median), and 75th percentile effective property tax rates. The region is mostly zipcode-based, but sometimes a single zipcode can contain multiple regions due to local tax laws.
The maximum number of results returned is 100.
Parameters
At least one of the following parameters must be set: city, county, zip.
stateoptional2-letter abbreviation of the state (case-insensitive).
countyoptionalThe name of the county for which property tax data is being requested.
cityoptionalFull name of the city to search (case-sensitive).
zipoptionalThe ZIP Code to look up property tax rates.
Headers
X-Api-KeyrequiredAPI Key associated with your account.
Response
A JSON array of objects, each containing the following fields, or an error if the request is unsuccessful.
state2-letter abbreviation of the state (case-insensitive).
countyThe name of the county for which property tax data is being requested.
cityFull name of the city to search (case-sensitive).
zipThe ZIP Code of the property tax rate jurisdiction.
property_tax_25th_percentileThe 25th percentile effective property tax rate.
property_tax_50th_percentileThe 50th percentile effective property tax rate.
property_tax_75th_percentileThe 75th percentile effective property tax rate.
Sample Request Live Demo!
Try our APIs in the API playground
Sign up for a free API key to get started — no credit card required.
https://api.api-ninjas.com/v1/propertytax?city=Eugene&state=ORHeaders
X-Api-KeyLog in or sign up to get your API KeySample Response
Code Examples
1
2
curl -X GET "https://api.api-ninjas.com/v1/propertytax?city=Eugene&state=OR" \
-H "X-Api-Key: YOUR_API_KEY"If your programming language is not listed in the Code Example above, you can still make API calls by using a HTTP request library written in your programming language and following the above documentation.
Frequently Asked Questions
Can I use the Property Tax API for commercial purposes?
Yes, but you must have a premium subscription. Commercial use of the Property Tax API is not permitted on the free tier. See our pricing page to choose a plan that fits your needs.How do I get an API key and start using the Property Tax API?
Sign up for a free account to instantly get your API key, then pass it in theX-Api-Keyheader on every request. The documentation above includes ready-to-run examples in cURL, Python, JavaScript, Node.js, and more.What happens if I exceed my quota for the month?
Your API requests will simply be denied once you hit your monthly quota — you will never be charged more than the plan you signed up for. To increase your quota, you can upgrade your plan any time on our pricing page.What happens if a request to the Property Tax API fails?
The API responds with a standard HTTP status code and a JSON error message describing the problem. See our error codes reference for the full list of codes and how to resolve each one, or contact support if you need help.What are some use cases for the Property Tax API?
The Property Tax API is ideal for real estate platforms, mortgage and lending tools, relocation calculators, and investment analysis apps that need effective property tax rates across U.S. locations. It pairs well with our Sales Tax API and Income Tax API for building complete cost-of-living or tax-burden comparisons.How do I query property tax rates for a specific location?
Send a GET request to/v1/propertytaxwith at least one ofcity,county, orzipset, optionally narrowing results with the 2-letterstateparameter. Note thatcityis case-sensitive whilestateis case-insensitive; you can find valid ZIP codes and counties using our Zip Code API and County API.What does the Property Tax API response include?
Each result is a JSON object with location fields (state,county,city,zip) plus three effective property tax rates:property_tax_25th_percentile,property_tax_50th_percentile(median), andproperty_tax_75th_percentile. Rates are returned as decimals (for example, 0.0104363 is about 1.04 percent), and unsuccessful requests return an error instead.How are regions defined and how many results can a single query return?
Results are mostly zipcode-based, though a single ZIP code can sometimes map to multiple regions due to local tax laws, and the API returns a maximum of 100 results per request. For higher volume needs across many locations, see our pricing plans.