Property Tax Assessments
County assessor data for residential and commercial properties. Assessed value, land/improvement split, tax amount, owner name, year built, square footage, and lot size. Search by address, owner, ZIP, county, or parcel ID.
GET /api/v1/pro/property Requires API key Parameters
| address | Street address (partial match) |
| owner | Owner name (partial match) |
| zip | ZIP code |
| city | City (partial match) |
| state | Two-letter state code |
| county | County name (partial match) |
| parcel_id | APN/parcel number |
curl -H "Authorization: Bearer pro_YOUR_KEY" \
"https://api.verilexdata.com/api/v1/pro/property?address=123+Main&state=CA" Response
{
"dataset": "property",
"count": 1,
"data": [
{
"parcel_id": "5432-001-012",
"address": "123 MAIN ST",
"city": "LOS ANGELES",
"state": "CA",
"zip": "90012",
"county": "LOS ANGELES",
"property_type": "RESIDENTIAL",
"assessed_value": 850000,
"land_value": 520000,
"improvement_value": 330000,
"tax_amount": 10625.00,
"tax_year": 2025,
"owner_name": "SMITH JOHN & MARY",
"year_built": 1952,
"square_feet": 1850,
"lot_size_sqft": 6500,
"bedrooms": 3,
"bathrooms": 2.0
}
]
} Protected address exclusions
This dataset honors state address protection programs. Records for individuals enrolled in address confidentiality programs (judges, law enforcement, domestic violence survivors, and other protected classes) are excluded. If you believe a protected address appears in our data, contact privacy@verilexdata.com for immediate removal.