> ## 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.

# List Alerts

> List triggered physical alerts

Returns triggered alert rows generated from alert rules.

## Query Parameters

| Parameter  | Type      | Required | Description                                             |
| ---------- | --------- | -------- | ------------------------------------------------------- |
| `state`    | string    | No       | Filter by alert state                                   |
| `asset_id` | string\[] | No       | Filter to alerts tied to threats affecting these assets |
| `limit`    | integer   | No       | Max items                                               |
| `offset`   | integer   | No       | Row offset                                              |

## Alert states

* `new`
* `seen`
* `acked`
* `dismissed`


## OpenAPI

````yaml get /v1/alerts
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/alerts:
    get:
      tags:
        - Alerts
      summary: List alerts
      operationId: listAlerts
      parameters:
        - name: state
          in: query
          schema:
            type: string
            enum:
              - new
              - seen
              - acked
              - dismissed
        - name: asset_id
          in: query
          schema:
            oneOf:
              - type: string
              - type: array
                items:
                  type: string
          explode: true
        - $ref: '#/components/parameters/Limit'
        - $ref: '#/components/parameters/Offset'
      responses:
        '200':
          description: Triggered alert feed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AlertListResponse'
components:
  parameters:
    Limit:
      name: limit
      in: query
      schema:
        type: integer
        minimum: 1
        maximum: 5000
        default: 100
    Offset:
      name: offset
      in: query
      schema:
        type: integer
        minimum: 0
        default: 0
  schemas:
    AlertListResponse:
      type: object
      properties:
        items:
          type: array
          items:
            $ref: '#/components/schemas/Alert'
        total:
          type: integer
        offset:
          type: integer
        limit:
          type: integer
      required:
        - items
        - total
        - offset
        - limit
    Alert:
      type: object
      properties:
        id:
          type: string
          format: uuid
        threat_id:
          type: string
          format: uuid
        threat_title:
          type: string
        alert_type:
          type: string
        severity:
          type: string
        title:
          type: string
        message:
          type: string
          nullable: true
        state:
          type: string
          enum:
            - new
            - seen
            - acked
            - dismissed
        rule_id:
          type: string
        rule_title:
          type: string
          nullable: true
        threat_type:
          type: string
          nullable: true
        threat_category:
          type: string
          nullable: true
        min_distance_km:
          type: number
          nullable: true
        max_distance_km:
          type: number
          nullable: true
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
      required:
        - id
        - threat_id
        - threat_title
        - alert_type
        - severity
        - title
        - state
        - rule_id
        - created_at
        - updated_at
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key

````