API Documentation

RESTful JSON API. Standard Bearer token authentication. Detailed response schemas.

Base URL

https://api.parcelbase.ai/api/v1

Authentication

Include your API key in the Authorization header with every request:

Authorization: Bearer YOUR_API_KEY

Endpoints

MethodEndpointDescription
GET/property/addressLookup by street address + city + state
GET/property/detailFull property detail (same as address lookup)
GET/property/ownerSearch by owner last name
GET/property/parcelSearch by APN / parcel ID
GET/sale/detailMost recent sale information
GET/sale/historyFull sales transaction history
GET/assessment/detailTax assessment details and history
GET/healthAPI health check (no auth required)
GET/usageYour API key usage statistics

Property Address Lookup

Search by address, city, and state. Optionally include ZIP code for precision.

ParameterTypeRequiredDescription
addressstringConditionalFull street address (e.g. 3925 Malibu Vista Dr)
numberstringConditionalStreet number only
city / localitystringConditionalCity name
state / countrySubdstringConditionalTwo-letter state code
zip / postal1stringOptional5-digit ZIP code
pageintegerOptionalPage number (default 1)
pagesizeintegerOptionalResults per page (max 25)

Example Request

curl -H "Authorization: Bearer YOUR_API_KEY" \\n  "https://api.parcelbase.ai/api/v1/property/address?address=3925+Malibu+Vista+Dr&city=Malibu&state=CA"

Response Structure

Every response includes a status object and a property array. Each property contains nested objects for address, location, owner, building, lot, assessment, sale, and mortgage data.

{\n  "status": { "code": 0, "msg": "Success", "total": 1, "page": 1, "pagesize": 25 },\n  "property": [{\n    "identifier": { "Id": 10483921, "fips": "06037", "apn": "4469-018-005" },\n    "address": { "oneLine": "3925 Malibu Vista Dr", "locality": "Malibu", "countrySubd": "CA", "postal1": "90265" },\n    "location": { "latitude": 34.021, "longitude": -118.779, "county": "Los Angeles" },\n    "summary": { "proptype": "Single Family", "yearbuilt": 1998, "absenteeInd": "N" },\n    "building": { "size": { "universalsize": 4200 }, "rooms": { "beds": 5, "bathstotal": 4 } },\n    "lot": { "lotsize1": 32500, "lotsize2": 0.75, "pooltype": "Y" },\n    "owner": {\n      "owner1": { "fullName": "John A Smith", "firstName": "John", "lastName": "Smith", "type": "Individual" },\n      "mailingAddress": { "line1": "3925 Malibu Vista Dr", "locality": "Malibu", "countrySubd": "CA" }\n    },\n    "assessment": { "assessed": { "total": 3800000 }, "market": { "total": 4250000 }, "avm": { "value": 4180000 } },\n    "sale": { "lastSale": { "price": 3900000, "date": "2021-06-15" } },\n    "mortgage": { "amount": 2800000, "lender": { "companyname": "Wells Fargo" } }\n  }]\n}

Error Codes

CodeHTTP StatusDescription
0200Success
400400Invalid or missing parameters
401401Invalid or missing API key
403403API key disabled
404404No properties found
429429Rate limit or daily quota exceeded

Full OpenAPI 3.0 specification available at /openapi.yaml. For RapidAPI users, the X-RapidAPI-Key header is also accepted for authentication.