Florida Property API
Florida Property Data API — Parcels, Values, and Sales History
The Florida Property Data API returns full parcel detail by parcel ID — owner, site address, just & assessed values, use codes, year built — plus recorded deed transfers from the sales endpoint, all in a single envelope-shaped response.
Example request
One curl call, one Bearer token. No SDK install required.
GET/v1/sales/search?county=hillsborough
curl -H "Authorization: Bearer fpapi_test_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" \
"https://api.floridapropertyapi.com/v1/sales/search?county=hillsborough"Example response
Envelope-shaped JSON with data, meta, and pagination cursors.
JSONsales-search.json
{
"data": [
{
"county_slug": "hillsborough",
"county_parcel_id": "A-21-29-18-0000-00100-0010",
"sale_date": "2021-09-30",
"sale_price": 3900000,
"book": "28714",
"page": "1442",
"instrument_number": "2021456789",
"deed_code": "WD",
"qualification_code": "Q",
"grantor": "JACKSON STREET PARTNERS LP",
"grantee": "NORTHWEST HOLDINGS LLC"
},
{
"county_slug": "hillsborough",
"county_parcel_id": "U-12-28-17-3RT-000004-00021.0",
"sale_date": "2019-06-14",
"sale_price": 189000,
"book": "26901",
"page": "0317",
"instrument_number": "2019221045",
"deed_code": "WD",
"qualification_code": "Q",
"grantor": "REYES, DIEGO",
"grantee": "MARTINEZ, RAUL & LISA"
}
],
"pagination": {
"limit": 25,
"offset": 0,
"total": 2,
"has_more": false
},
"meta": {
"request_id": "req_3a0f5c81d6e24b77"
}
}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