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

# Auth Events History



## OpenAPI

````yaml /api/en/radius.yaml get /radius/insights/authentication-events-over-time
openapi: 3.0.3
info:
  title: Altostrat RADIUS API
  version: 1.0.0
  description: >-
    The Altostrat RADIUS API is the microservice responsible for managing
    network user identities, device authentication, and access control policies.


    **Base URL:** `https://v1.api.altostrat.io`


    This API allows you to programmatically manage:

    - **Accounts:** The identities connecting to the network (formerly Users).

    - **Account Containers:** Hierarchical organization units for accounts
    (folders/organizational units).

    - **Groups:** Collections of accounts that share common access policies.

    - **NAS Devices:** Network Access Servers (routers/APs) that authenticate
    clients.

    - **Tags:** Flexible labels for organizing resources.

    - **Realms:** Routing realms for authentication requests.

    - **Insights:** Network analytics and health metrics.
servers:
  - url: https://v1.api.altostrat.io
security:
  - bearerAuth: []
tags:
  - name: Platform
    description: General platform statistics and attribute definitions.
  - name: Account Containers
    description: Manage hierarchical containers for organizing accounts.
  - name: Accounts
    description: Manage RADIUS user accounts (identities).
  - name: Groups
    description: Manage policy groups.
  - name: NAS Devices
    description: Manage Network Access Servers.
  - name: Realms
    description: Manage authentication realms.
  - name: Tags
    description: Manage organizational tags.
  - name: Insights
    description: Analytical data and network health metrics.
  - name: Data Migration
    description: Tools for bulk-importing data.
  - name: Certificates
    description: PKI management for RadSec.
  - name: Logs
    description: Access audit and authentication logs.
paths:
  /radius/insights/authentication-events-over-time:
    get:
      tags:
        - Insights
      summary: Auth Events History
      parameters:
        - $ref: '#/components/parameters/TimeWindow'
        - $ref: '#/components/parameters/Interval'
      responses:
        '200':
          description: Auth event time series.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InsightTimeSeriesResponse'
components:
  parameters:
    TimeWindow:
      name: time_window
      in: query
      required: true
      schema:
        type: string
        enum:
          - 1h
          - 6h
          - 12h
          - 24h
          - 7d
          - 30d
    Interval:
      name: interval
      in: query
      required: true
      schema:
        type: string
        enum:
          - 1m
          - 5m
          - 15m
          - 1h
          - 6h
          - 1d
  schemas:
    InsightTimeSeriesResponse:
      type: object
      properties:
        data:
          type: array
          items:
            type: object
            properties:
              time_bucket:
                type: string
              value:
                type: number
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````