NewConnect Claude, Gemini, ChatGPT, and other AI agents to API Ninjas via our MCP server

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.

(4.8)

From 4,229 users

3,500+

Applications using this API

API Status

Online - All Systems Operational

API Response Times

Average
P50
P75
P90
P95
305ms328ms396ms531ms1080ms

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.

  • state  optional

    2-letter abbreviation of the state (case-insensitive).

  • county  optional

    The name of the county for which property tax data is being requested.

  • city  optional

    Full name of the city to search (case-sensitive).

  • zip  optional

    The ZIP Code to look up property tax rates.

Headers

  • X-Api-Key  required

    API Key associated with your account.

Response

A JSON array of objects, each containing the following fields, or an error if the request is unsuccessful.

  • state

    2-letter abbreviation of the state (case-insensitive).

  • county

    The name of the county for which property tax data is being requested.

  • city

    Full name of the city to search (case-sensitive).

  • zip

    The ZIP Code of the property tax rate jurisdiction.

  • property_tax_25th_percentile

    The 25th percentile effective property tax rate.

  • property_tax_50th_percentile

    The 50th percentile effective property tax rate.

  • property_tax_75th_percentile

    The 75th percentile effective property tax rate.

Sample Request Live Demo!

city
state
county
zip

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=OR

Headers

X-Api-KeyLog in or sign up to get your API Key

Sample Response

JSON
[
    {
      state:"OR",
      county:"Lane",
      city:"Eugene",
      zip:"97401",
      property_tax_25th_percentile:0.00942916,
      property_tax_50th_percentile:0.0104363,
      property_tax_75th_percentile:0.0114832
    },
    {
      state:"OR",
      county:"Lane",
      city:"Eugene",
      zip:"97402",
      property_tax_25th_percentile:0.00782806,
      property_tax_50th_percentile:0.00855799,
      property_tax_75th_percentile:0.00956312
    },
    {
      state:"OR",
      county:"Lane",
      city:"Eugene",
      zip:"97403",
      property_tax_25th_percentile:0.00942755,
      property_tax_50th_percentile:0.0106412,
      property_tax_75th_percentile:0.0118866
    },
    {
      state:"OR",
      county:"Lane",
      city:"Eugene",
      zip:"97404",
      property_tax_25th_percentile:0.00717529,
      property_tax_50th_percentile:0.00883678,
      property_tax_75th_percentile:0.0102749
    },
    {
      state:"OR",
      county:"Lane",
      city:"Eugene",
      zip:"97405",
      property_tax_25th_percentile:0.00900753,
      property_tax_50th_percentile:0.010321,
      property_tax_75th_percentile:0.0115112
    },
    {
      state:"OR",
      county:"Lane",
      city:"Eugene",
      zip:"97408",
      property_tax_25th_percentile:0.00891131,
      property_tax_50th_percentile:0.0104162,
      property_tax_75th_percentile:0.0116135
    }
]

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

  • 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.
  • Sign up for a free account to instantly get your API key, then pass it in the X-Api-Key header on every request. The documentation above includes ready-to-run examples in cURL, Python, JavaScript, Node.js, and more.
  • 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.
  • 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.
  • 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.
  • Send a GET request to /v1/propertytax with at least one of city, county, or zip set, optionally narrowing results with the 2-letter state parameter. Note that city is case-sensitive while state is case-insensitive; you can find valid ZIP codes and counties using our Zip Code API and County API.
  • 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), and property_tax_75th_percentile. Rates are returned as decimals (for example, 0.0104363 is about 1.04 percent), and unsuccessful requests return an error instead.
  • 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.