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 /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"
  }