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

# Get an Alert Event

> Fetches a single alert event by its CUID.



## OpenAPI

````yaml get /v1/risk/alert-events/{event_id}
openapi: 3.0.0
info:
  title: Range Risk API
  description: The Range Risk API for risk assessment of crypto addresses.
  version: 1.7.8
  contact: {}
servers:
  - url: https://api.range.org
    description: Range API Server
security:
  - Authorization: []
tags:
  - name: Risk
    description: Get risk information about a crypto address.
  - name: Risk v2
    description: >-
      Address risk assessment, workspace configuration, and signals catalogue
      (API v2).
  - name: Simulator
    description: Simulate a transaction on a network.
  - name: Alert Templates
    description: Browse alert rule templates available to the workspace.
  - name: Alert Rules
    description: Create and manage workspace alert rules.
  - name: Alert Events
    description: List and retrieve fired alert events.
  - name: Channels
    description: Configure alert delivery channels.
paths:
  /v1/risk/alert-events/{event_id}:
    get:
      tags:
        - Alert Events
      summary: Get a single alert event by ID
      description: >-
        Fetches a single alert event by its CUID. The response includes an
        `access_type` field that indicates the caller's access relationship to
        the event.
      operationId: getEvent
      parameters:
        - name: event_id
          required: true
          in: path
          description: CUID of the alert event to retrieve.
          schema:
            example: clxyz1234abcd
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AlertEventDto'
components:
  schemas:
    AlertEventDto:
      type: object
      properties:
        id:
          type: string
          description: Unique identifier of the alert event.
          example: clxyz1234abcd
        time:
          type: string
          description: ISO 8601 timestamp of when the on-chain event occurred.
          example: '2026-05-10T14:22:00.000Z'
        tx_hash:
          type: string
          nullable: true
          description: Transaction hash associated with the event.
          example: 0xabc123...def456
        block_number:
          type: number
          nullable: true
          description: Block number at which the event was detected.
          example: 19823401
        network:
          type: string
          description: Network slug where the event occurred.
          example: ethereum
        alert_rule_id:
          type: string
          nullable: true
          description: ID of the alert rule that produced this event.
          example: '7890123456789012'
        addresses_involved:
          description: List of blockchain addresses involved in the event.
          example:
            - '0x742d35Cc6634C0532925a3b844Bc9e7595f2bD28'
          type: array
          items:
            type: string
        created_at:
          type: string
          description: ISO 8601 timestamp of when the event record was created.
          example: '2026-05-10T14:22:05.000Z'
        details:
          type: object
          description: Arbitrary structured data specific to the event type.
          example:
            amount: 5000000
            token: USDC
            from: '0x742d35Cc6634C0532925a3b844Bc9e7595f2bD28'
            to: 0xAbC...123
        severity:
          type: string
          description: Risk severity of the event.
          example: high
          enum:
            - low
            - medium
            - high
        caption:
          type: string
          description: Human-readable caption describing the event.
          example: Large USDC transfer detected
        access_type:
          type: string
          description: Caller's access relationship to this event.
          example: same
          enum:
            - global
            - same
            - diff
            - none
      required:
        - id
        - time
        - network
        - addresses_involved
        - created_at
        - details
        - severity
        - caption
        - access_type
  securitySchemes:
    Authorization:
      scheme: bearer
      bearerFormat: API Key
      description: 'Use Authorization: Bearer <api-key>'
      type: http

````