Discover/property-appraiser API
live

property-appraiser APIproperty-appraiser.org

Search Osceola County, FL property records by street address. Returns parcel ID, just value, assessed value, year built, and living area via a single API.

This API takes change requests — .
Endpoint health
verified 3h ago
search_properties
1/1 passing latest checkself-healing
Endpoints
1
Updated
3h ago

What is the property-appraiser API?

The property-appraiser.org API provides access to Osceola County, Florida public property records through a single search_properties endpoint that returns up to 9 fields per parcel — including parcel ID, current just (market) value, assessed value, year built, and total living area. Query by full or partial street address to retrieve matching parcels in one call.

This call costs2 credits / call— charged only on success
Try it
Street address to search (e.g. '2606 Grey Hawk Dr', '5401 Osceola Ave'). Partial addresses are supported.
api.parse.bot/scraper/6daa4336-ce07-43c0-a3d1-dce16dfcadbb/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/6daa4336-ce07-43c0-a3d1-dce16dfcadbb/search_properties?address=2606+Grey+Hawk+Dr' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace property-appraiser-org-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: Osceola County Property Appraiser — search parcels by address."""
from parse_apis.property_appraiser_org_api import PropertyAppraiser, InputFormatInvalid

client = PropertyAppraiser()

# Search for properties on a street; limit total results fetched.
for parcel in client.parcels.search(address="Grey Hawk Dr", limit=5):
    print(parcel.parcel_id, parcel.site_address, parcel.city)
    print(f"  Just value: ${parcel.just_value:,}  Assessed: ${parcel.assessed_value:,}")
    if parcel.year_built is not None:
        print(f"  Year built: {parcel.year_built}")
    if parcel.total_living_area_sqft is not None:
        print(f"  Living area: {parcel.total_living_area_sqft} sqft")

# Point lookup for a specific address; .first() returns None if no match.
try:
    result = client.parcels.search(address="123 Main St, Springfield, IL 62704", limit=1).first()
except InputFormatInvalid as e:
    print(f"Invalid address format: {e.message}")
    result = None

if result is not None:
    print(f"\nFound: {result.site_address}, {result.city} {result.zip}")
    print(f"  Parcel ID: {result.parcel_id}")
    print(f"  Just value: ${result.just_value:,}")

print("\nexercised: parcels.search")
All endpoints · 1 totalmissing one? ·

Search Osceola County property records by street address. Returns matching parcels with parcel ID, full site address, city, zip, current just value (market value), assessed value, year built, and total living area. Each matching address triggers one detail lookup, so a broad search (e.g. a common street name) may return many results with proportional latency.

Input
ParamTypeDescription
addressrequiredstringStreet address to search (e.g. '2606 Grey Hawk Dr', '5401 Osceola Ave'). Partial addresses are supported.
Response
{
  "type": "object",
  "fields": {
    "total": "integer count of matching parcels",
    "parcels": "array of parcel objects with property details"
  },
  "sample": {
    "data": {
      "total": 1,
      "parcels": [
        {
          "zip": "34746",
          "city": "KISSIMMEE",
          "parcel_id": "13-26-28-3692-0001-2100",
          "just_value": 40000,
          "year_built": null,
          "site_address": "2606 GREY HAWK DR",
          "assessed_value": 40000,
          "total_living_area_sqft": null
        }
      ]
    },
    "status": "success"
  }
}

About the property-appraiser API

What the API Returns

The search_properties endpoint accepts a address string parameter and returns a list of matching Osceola County parcels. Each parcel object includes a unique parcel ID, the full site address, city, ZIP code, current just value (Florida's statutory term for market value), assessed value, year built, and total living area in square feet. The response also includes a total integer indicating how many parcels matched the query.

Querying with Partial Addresses

The address parameter supports partial matches, so inputs like '5401 Osceola' or 'Grey Hawk' will return all parcels whose addresses contain that substring. Because each match triggers an individual detail lookup, broad queries covering many streets can return multiple parcel objects. For precise lookups, supplying a full street address — such as '2606 Grey Hawk Dr' — narrows results to one or a small handful of parcels.

Coverage and Data Source

All data is scoped to Osceola County, Florida. The just value and assessed value fields reflect the county property appraiser's official records, which are updated on the county's own publication schedule — typically following the annual assessment cycle. This makes the API useful for tasks requiring current county-assessed valuations rather than third-party estimates.

Reliability & maintenanceVerified

The property-appraiser API is a managed, monitored endpoint for property-appraiser.org — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when property-appraiser.org changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official property-appraiser.org API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
3h ago
Latest check
1/1 endpoint passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Look up the assessed value and market value of a specific Osceola County parcel before making an offer.
  • Retrieve year built and living area for a property to compare against listing data.
  • Batch-query a list of street addresses to collect parcel IDs for further county record lookups.
  • Verify a property's legal ZIP code and city designation using the returned site address fields.
  • Pull current just values across a neighborhood by querying a common street name fragment.
  • Cross-reference county-assessed values against sale prices for real estate investment analysis.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does property-appraiser.org have an official developer API?+
The Osceola County Property Appraiser's website does not publish a documented public developer API or data feed. This Parse API provides structured programmatic access to the same public parcel data.
What does the search_properties endpoint return for each parcel?+
Each parcel object contains the parcel ID, full site address, city, ZIP code, current just value (market value), assessed value, year built, and total living area in square feet. The response also includes a total field with the integer count of matched parcels.
Does the API cover counties outside Osceola County, Florida?+
Not currently. The API is scoped exclusively to Osceola County, FL property records. You can fork it on Parse and revise it to add coverage for additional Florida counties or other jurisdictions.
Does the API return ownership or tax history information?+
Not currently. The API covers valuation fields (just value, assessed value), physical attributes (year built, living area), and location identifiers (parcel ID, address, city, ZIP). Ownership details and historical tax records are not included in the current response shape. You can fork it on Parse and revise it to add those fields if the source exposes them.
How current is the valuation data returned by the API?+
The just value and assessed value figures reflect the Osceola County Property Appraiser's official records, which are updated on the county's annual assessment cycle. Values may not reflect mid-year changes or recent sale prices, and are best understood as the most recently published county assessment.
Page content last updated . Spec covers 1 endpoint from property-appraiser.org.
Related APIs in Real EstateSee all →
scpafl.org API
Search Seminole County, Florida property records by address to access parcel information, assessments, and appraiser data. Find detailed property details and valuation records for any site in the county quickly and easily.
qPublic Property Records API
Search for properties on qPublic and access comprehensive details including owner information, valuations, building and land characteristics, sales history, tax exemptions, and fees. Retrieve complete property records to research real estate, verify ownership, or analyze property values.
manateepao.gov API
Search for properties in Manatee County and retrieve detailed information including ownership records, sales history, and comparable sales data. Access parcel-level details such as land use, building area, living units, and transaction history across all property types.
esearch.fbcad.org API
Search and access detailed property records from Fort Bend Central Appraisal District, including keyword searches, advanced filtering options, and comprehensive property information. Find specific properties in Fort Bend County with complete appraisal details and ownership records.
api.developer.attomdata.com API
Look up comprehensive property details including ownership information, neighborhood data, and historical transaction trends for any address. Search for points of interest and analyze sales trends to make informed real estate decisions.
realtor.com API
Search millions of real estate listings on Realtor.com, view detailed property information, find qualified agents in your area, and access market analytics to understand pricing trends. Get location suggestions and property insights all in one place to help you make informed decisions about buying, selling, or investing in real estate.
privateproperty.co.za API
Search and browse property listings for sale and rent across South Africa by location, price, features, and size, then view detailed information about specific properties. Get location suggestions to help narrow down your search area.
sc-charleston.publicaccessnow.com API
Look up property assessment data from Charleston County, SC by PIN to find owner information, assessed values, property characteristics, and sales history. Perfect for researching real estate details, verifying property information, or tracking Charleston County property records.