# PDF Reporting

<figure><img src="https://915036663-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FvXlc832eiw1OxKuyzy6k%2Fuploads%2FduVQJ5X9UsHnEOHzT0W0%2FLogo%20PDF%20Reporting.png?alt=media&#x26;token=2af9d8a8-a329-49f7-a510-88bb0a3b44f5" alt=""><figcaption></figcaption></figure>

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**

```bash
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:

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

{% hint style="info" %}
You can also add your own data to the PDF documents on top of Geolava's insights
{% endhint %}
