PDF Reporting

A convenient endpoint to compile results from multiple Agents into a single branded document.

Usage Flow

  1. Query any combination of Agents.

  2. Call POST /v1/report/generate with the property ID(s) or region-based results.

  3. Download the resulting PDF from the provided report_url.

Sample Request

POST /v1/report/generate
{
  "address": "415 Mission Street, San Franscisco, CA, US",
  "include_agents": ["valuation", "condition", "compliance"],
  "branding": {
    "logo_url": "https://example.com/logo.png",
    "footer_text": "Property Report by MyCompany"
  }
}

Response includes:

{
  "report_id": "rpt-67a771e11bcf52fcce866d6a",
  "report_url": "https://reports.geolava.com/v1/report/rpt-67a771e11bcf52fcce866d6a.pdf",
  "expires_at": "2025-03-01T00:00:00Z"
}

You can also add your own data to the PDF documents on top of Geolava's insights

Last updated

Was this helpful?