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

# Get statisticsraw data

> Get raw statistics data. Filterable fields: `actionType` (e.g. `HOME_MENU_CLICK`), `resourceType`
(e.g. `WIDGET`), `actionUser`, `associatedEntity`, `description`, `first`, `rowId`, and the `data.*`
fields (`data.type`, `data.tags`, `data.processingUser`, `data.ticketId`, …).
Suffix a filter with `_gte`, `_lte`, `_gt`, `_lt`, `_ne`, `_in` or `_nin` for range/set operators.
At most 10000 rows are returned; `skip`/`limit` are ignored. A filter on a field this table
doesn't have is rejected with a 400 naming the field and listing the supported ones.
Row timestamps are UTC; `timezone` does not apply here (it only affects bucketed endpoints).



## OpenAPI

````yaml https://api.gleap.io/api-docs.json get /statistics/raw-data
openapi: 3.0.0
info:
  title: gleap-server
  version: 14.0.0
  contact: {}
servers:
  - url: https://api.gleap.io/v3
security: []
paths:
  /statistics/raw-data:
    get:
      tags:
        - Statistics
      description: >-
        Get raw statistics data. Filterable fields: `actionType` (e.g.
        `HOME_MENU_CLICK`), `resourceType`

        (e.g. `WIDGET`), `actionUser`, `associatedEntity`, `description`,
        `first`, `rowId`, and the `data.*`

        fields (`data.type`, `data.tags`, `data.processingUser`,
        `data.ticketId`, …).

        Suffix a filter with `_gte`, `_lte`, `_gt`, `_lt`, `_ne`, `_in` or
        `_nin` for range/set operators.

        At most 10000 rows are returned; `skip`/`limit` are ignored. A filter on
        a field this table

        doesn't have is rejected with a 400 naming the field and listing the
        supported ones.

        Row timestamps are UTC; `timezone` does not apply here (it only affects
        bucketed endpoints).
      operationId: GetRawStatistics
      parameters:
        - description: '- Ignored on this endpoint; raw rows carry UTC timestamps'
          in: query
          name: timezone
          required: false
          schema:
            type: string
        - in: query
          name: groupInterval
          required: false
          schema:
            type: string
            enum:
              - hour
              - day
              - month
              - year
        - in: query
          name: skip
          required: false
          schema:
            type: number
            format: double
        - in: query
          name: limit
          required: false
          schema:
            type: number
            format: double
        - in: query
          name: groupedBy
          required: false
          schema:
            type: string
        - in: query
          name: aggsType
          required: false
          schema:
            type: string
        - description: '- Start date for filtering (ISO format)'
          in: query
          name: startDate
          required: false
          schema:
            type: string
        - description: '- End date for filtering (ISO format)'
          in: query
          name: endDate
          required: false
          schema:
            type: string
        - in: query
          name: createdAt
          required: false
          schema:
            type: string
        - in: query
          name: updatedAt
          required: false
          schema:
            type: string
        - description: >-
            - Not a filter on this endpoint (`stats_events` has no `type`
            column) — passing it

            returns 400. The per-message kind lives in `data.type` (e.g.
            SHARED_COMMENT, USER_TEXT, BOT_REPLY).
          in: query
          name: type
          required: false
          schema:
            type: string
      responses:
        '200':
          description: Ok
          content:
            application/json:
              schema: {}
      security:
        - jwt: []
components:
  securitySchemes:
    jwt:
      type: http
      scheme: bearer
      bearerFormat: JWT

````