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

> Query the broader event-intelligence layer

Returns raw event-intelligence rows for discovery, mapping, and analytics.

## Query Parameters

| Parameter          | Type    | Required | Description                                |
| ------------------ | ------- | -------- | ------------------------------------------ |
| `bbox`             | string  | No       | Bounding box `minLng,minLat,maxLng,maxLat` |
| `date_from`        | string  | No       | Inclusive start date                       |
| `date_to`          | string  | No       | Inclusive end date                         |
| `event_category`   | string  | No       | Filter by event category                   |
| `event_type`       | string  | No       | Filter by event type                       |
| `location_country` | string  | No       | ISO-2 country code                         |
| `keyword`          | string  | No       | Case-insensitive keyword search            |
| `limit`            | integer | No       | Max rows                                   |
| `offset`           | integer | No       | Row offset                                 |

## Example Request

```bash theme={null}
curl -H "X-API-Key: your-api-key" "https://api.intrace.ai/v1/events?event_category=armed_conflict&location_country=NG&date_from=2026-04-01"
```


## OpenAPI

````yaml get /v1/events
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/events:
    get:
      tags:
        - Event Intelligence
      summary: List events
      operationId: listEvents
      parameters:
        - $ref: '#/components/parameters/EventBBox'
        - name: date_from
          in: query
          schema:
            type: string
            format: date
        - name: date_to
          in: query
          schema:
            type: string
            format: date
        - name: event_category
          in: query
          schema:
            type: string
        - name: event_type
          in: query
          schema:
            type: string
        - name: location_country
          in: query
          schema:
            type: string
        - name: keyword
          in: query
          schema:
            type: string
        - $ref: '#/components/parameters/Limit'
        - $ref: '#/components/parameters/Offset'
      responses:
        '200':
          description: Event list.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EventListResponse'
components:
  parameters:
    EventBBox:
      name: bbox
      in: query
      schema:
        type: string
      description: Bounding box as minLng,minLat,maxLng,maxLat.
    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:
    EventListResponse:
      type: object
      properties:
        events:
          type: array
          items:
            $ref: '#/components/schemas/Event'
        total:
          type: integer
        limit:
          type: integer
        offset:
          type: integer
      required:
        - events
        - total
        - limit
        - offset
    Event:
      type: object
      properties:
        id:
          type: string
        title:
          type: string
        description:
          type: string
          nullable: true
        event_category:
          type: string
        event_type:
          type: string
        event_subtype:
          type: string
          nullable: true
        event_date:
          type: string
          nullable: true
        event_date_end:
          type: string
          nullable: true
        location:
          type: string
          nullable: true
        location_country:
          type: string
          nullable: true
        coordinates:
          type: array
          items:
            type: number
          minItems: 2
          maxItems: 2
          nullable: true
        salience_score:
          type: number
          nullable: true
        severity:
          type: string
        article_count:
          type: integer
        actor_count:
          type: integer
        actors:
          type: array
          items:
            $ref: '#/components/schemas/EventActor'
          nullable: true
        data_source:
          type: string
          nullable: true
        created_at:
          type: string
          format: date-time
      required:
        - id
        - title
        - event_category
        - event_type
        - severity
        - article_count
        - actor_count
        - created_at
    EventActor:
      type: object
      properties:
        id:
          type: string
        canonical_name:
          type: string
        actor_category:
          type: string
          nullable: true
        country:
          type: string
          nullable: true
        role:
          type: string
        position:
          type: string
          nullable: true
        role_description:
          type: string
          nullable: true
      required:
        - id
        - canonical_name
        - role
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key

````