API DOCS

Available Modules

Usage:

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.

Example:

GET http://fixeroffer.com/api/parcel/read/123?apikey=your_api_key

HTTP Status Codes:

Sample Response (Success):

  {
    "entryid": 123,
    "apn": "1234567890",
    ...
    "lcprev": "LCPrev1"
  }
  

Sample Response (Error - Invalid API Key):

  {
    "error": "Missing or invalid API key"
  }
  

Sample Response (Error - Parcel Not Found):

  {
    "error": "Parcel not found"
  }
  

Module Parcel

This API endpoint allows you to retrieve data of a specific parcel from the database in JSON format.

1. Function Search Parcel

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.

2. Function Read Parcel

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.

Module Listing

This API endpoint allows you to retrieve data of a specific listing from the database in JSON format.

1. Function Read Listing

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.