GET /api/{module}/{funtion}/{additionalparams}?apikey={key}
Replace {entryid}
with the ID of the parcel you want to retrieve.
Replace {key}
with your API key for authentication.
GET http://fixeroffer.com/api/parcel/read/123?apikey=your_api_key
{ "entryid": 123, "apn": "1234567890", ... "lcprev": "LCPrev1" }
{ "error": "Missing or invalid API key" }
{ "error": "Parcel not found" }
This API endpoint allows you to retrieve data of a specific parcel from the database in JSON format.
Endpoint: /parcel/search
Method: GET
Description: Search for parcels based on owner name or physical address.
Parameters:
Example Usage: http://fixeroffer.com/api/parcel/search/?apikey=YOUR_API_KEY&search=John&page=1
Response: Returns a JSON array of parcel records matching the search criteria.
Endpoint: /parcel/read
Method: GET
Description: Get a singular parcel entry and it's publicly available data
Parameters:
Example Usage: http://fixeroffer.com/api/parcel/read/{propertyID}?apikey={YOUR_API_KEY}
Response: Returns a JSON array of a parcel record matching the criteria.
This API endpoint allows you to retrieve data of a specific listing from the database in JSON format.
Endpoint: /listing/read
Method: GET
Description: Get a singular listing entry and it's publicly available data
Parameters:
Example Usage: http://fixeroffer.com/api/listing/read/{propertyID}?apikey={YOUR_API_KEY}
Response: Returns a JSON array of a listing record matching the criteria.