Florida Property API
Florida Parcel API for Property Records
Florida Property API provides REST API access to searchable Florida parcel records, including owners, site addresses, just & assessed values, use codes, and year built. Use it instead of scraping county property-appraiser sites manually for diligence workflows, internal tools, valuation models, and enrichment pipelines. Sales history is coming soon.
Example request
One curl call, one Bearer token. No SDK install required.
GET/api/v1/parcels/search?owner=smith
curl -H "Authorization: Bearer fpapi_test_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" \
"https://floridapropertyapi.com/api/v1/parcels/search?owner=smith"Example response
Envelope-shaped JSON with data, meta, and pagination cursors.
JSONparcel-search.json
{
"data": [
{
"parcel_id": "A-21-29-18-0000-00100-0010",
"county_slug": "hillsborough",
"county_name": "Hillsborough",
"owner_name": "NORTHWEST HOLDINGS LLC",
"site_address_full": "401 E JACKSON ST, TAMPA, FL 33602",
"site_city": "TAMPA",
"site_state": "FL",
"site_zip": "33602",
"dor_use_code": "0300",
"property_use_code": "0300",
"land_use_description": "OFFICE BUILDING, NON-PROFESSIONAL",
"just_value": 4250000,
"assessed_value": 3980000,
"taxable_value": 3980000,
"year_built": 1986,
"last_sale_date": "2021-09-30",
"last_sale_price": 3900000,
"centroid_lat": 27.9489,
"centroid_lng": -82.4571
},
{
"parcel_id": "U-12-28-17-3RT-000004-00021.0",
"county_slug": "hillsborough",
"county_name": "Hillsborough",
"owner_name": "MARTINEZ, RAUL & LISA",
"site_address_full": "8814 N ARMENIA AVE, TAMPA, FL 33604",
"site_city": "TAMPA",
"site_state": "FL",
"site_zip": "33604",
"dor_use_code": "0100",
"property_use_code": "0100",
"land_use_description": "SINGLE FAMILY RESIDENTIAL",
"just_value": 312500,
"assessed_value": 248900,
"taxable_value": 223900,
"year_built": 1954,
"last_sale_date": "2019-06-14",
"last_sale_price": 189000,
"centroid_lat": 28.0162,
"centroid_lng": -82.4843
}
],
"pagination": {
"limit": 25,
"offset": 0,
"total": 2,
"has_more": false
},
"meta": {
"request_id": "req_8f3c1a2e7b9d4c01"
}
}Ready to ship against Florida data?
Read the authentication docs then start hitting the API with your test key. Free tier: 1,000 calls/mo.
Last updated: 2026-06-28