> ## 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 Threat Report

> Generate a report for one threat

## Request Body

```json theme={null}
{
  "threat_id": "4f5d1cc9-d4cc-49a1-a3fc-5ec93d674bc8"
}
```

## Response

```json theme={null}
{
  "reportId": "0e72da56-a3c9-4445-bd74-7e9b0ac7c47c",
  "status": "completed",
  "title": "Threat Report"
}
```


## OpenAPI

````yaml post /v1/reports/threats
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/threats:
    post:
      tags:
        - Reports
      summary: Generate threat report
      operationId: generateThreatReport
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GenerateThreatReportRequest'
      responses:
        '200':
          description: Threat report generated.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ReportResponse'
components:
  schemas:
    GenerateThreatReportRequest:
      type: object
      properties:
        threat_id:
          type: string
          format: uuid
      required:
        - threat_id
    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

````