> ## Documentation Index
> Fetch the complete documentation index at: https://docs.events.intrace.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Generate Landscape Report

> Start asynchronous landscape report generation

## Request Body

```json theme={null}
{
  "date_from": "2026-04-01",
  "date_to": "2026-04-18",
  "asset_scope": [
    "lagos-hq",
    "abuja-residence-1"
  ]
}
```

## Response

```json theme={null}
{
  "reportId": "c13a3f31-4bca-4c9d-80e4-ddb3f5119397",
  "status": "generating",
  "title": "Threat Landscape"
}
```


## OpenAPI

````yaml post /v1/reports/landscape
openapi: 3.1.0
info:
  title: Intrace Events Monitoring API
  version: 0.1.0
  description: >
    External asset monitoring and event intelligence API derived from the
    internal

    Intrace events investigations platform.


    This public API is tenant-scoped by API key and intentionally does not
    expose

    internal identifiers such as case_id or investigation_id.
servers:
  - url: https://api.intrace.ai
security:
  - ApiKeyAuth: []
tags:
  - name: Assets
  - name: Threats
  - name: Incidents
  - name: Alerts
  - name: Reports
  - name: Event Intelligence
paths:
  /v1/reports/landscape:
    post:
      tags:
        - Reports
      summary: Generate landscape report
      operationId: generateLandscapeReport
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GenerateLandscapeReportRequest'
      responses:
        '202':
          description: Landscape report generation started.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ReportResponse'
components:
  schemas:
    GenerateLandscapeReportRequest:
      type: object
      properties:
        date_from:
          type: string
          format: date
        date_to:
          type: string
          format: date
        asset_scope:
          type: array
          items:
            type: string
    ReportResponse:
      type: object
      properties:
        report_id:
          type: string
          format: uuid
        status:
          type: string
        title:
          type: string
      required:
        - report_id
        - status
        - title
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key

````