Property Explorer API

Property Explorer Bulk Job Download

Download the results of a completed property explorer bulk job request in a zip file format. This endpoint provides access to all generated links for a bulk job. The request_id is obtained from the POST requests to the pexp_static_link or pexp_dynamic_link endpoints.

Pricing Tier: Premium

Request Path Params

<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr> <tr><td>request_id</td><td>string</td><td>The unique identifier for the bulk request obtained from the POST pexp endpoints</td><td>b2177aa4-f220-4da9-bd03-e7d3d28a89f0.2</td> </tr> </table>

Response

<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th><th>Enum Values</th></tr> <tr><td>request_id</td><td>string</td><td>The unique identifier for the bulk request</td><td>b2177aa4-f220-4da9-bd03-e7d3d28a89f0.2</td> <td></td></tr> <tr><td>downloads</td><td>array</td><td>Array of download information for each completed task</td><td></td> <td></td></tr> <tr><td>downloads[]</td><td>object</td><td></td><td></td> <td></td></tr> <tr><td>downloads[].task_uuid</td><td>string</td><td>Unique identifier for the individual task</td><td>00000000-0000-0000-0003-631700000000</td> <td></td></tr> <tr><td>downloads[].download_link</td><td>string</td><td>Direct download link for the generated report</td><td>https://download-links.dev.hc.housecanary.net/dl/HQQLSTuOVZHi0G2Umiwa9A/221975/170-King-St-Unit-618-San-Francisco-CA-94107.pdf</td> <td></td></tr> <tr><td>downloads[].status</td><td>string</td><td>Status of the individual task</td><td>SUCCESS</td> <td>[SUCCESS, FAILURE]</td></tr> <tr><td>downloads[].error_message</td><td>string</td><td>Error message if the task failed</td><td></td> <td></td></tr> </table>
get/v3/jobs/{request_id}/download

Path parameters

request_idstring required

The unique identifier for the bulk request obtained from the POST pexp endpoints

Response

Success

request_idstring required

The unique identifier for the bulk request

Example response

{
  "request_id": "b2177aa4-f220-4da9-bd03-e7d3d28a89f0.2",
  "downloads": [
    {
      "task_uuid": "00000000-0000-0000-0003-631700000000",
      "download_link": "https://download-links.dev.hc.housecanary.net/dl/HQQLSTuOVZHi0G2Umiwa9A/221975/170-King-St-Unit-618-San-Francisco-CA-94107.pdf",
      "status": "SUCCESS"
    }
  ]
}