PDF Reporting

A convenient endpoint to compile results from multiple Agents into a single branded document.
Usage Flow
Query any combination of Agents.
Call
POST /v1/report/generate
with the property ID(s) or region-based results.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"
}
Last updated
Was this helpful?