> ## 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 at Point

> Return events co-located at one point

Useful for map click inspection when multiple events share near-identical coordinates.

## Query Parameters

| Parameter | Type    | Required | Description |
| --------- | ------- | -------- | ----------- |
| `lat`     | number  | Yes      | Latitude    |
| `lng`     | number  | Yes      | Longitude   |
| `limit`   | integer | No       | Max rows    |
| `offset`  | integer | No       | Row offset  |


## OpenAPI

````yaml get /v1/events/at-point
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/at-point:
    get:
      tags:
        - Event Intelligence
      summary: List events at point
      operationId: listEventsAtPoint
      parameters:
        - name: lat
          in: query
          required: true
          schema:
            type: number
            minimum: -90
            maximum: 90
        - name: lng
          in: query
          required: true
          schema:
            type: number
            minimum: -180
            maximum: 180
        - name: limit
          in: query
          schema:
            type: integer
            minimum: 1
            maximum: 200
            default: 50
        - $ref: '#/components/parameters/Offset'
      responses:
        '200':
          description: Co-located events.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EventListResponse'
components:
  parameters:
    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

````