# Aggregated analytics for the integration

**GET /v1/analytics**



## Servers
- https://api.isnotai.com
- https://api-eu.isnotai.com

## Authentication methods
- bearer_auth


## Responses
### 200
Payload of AnalyticsResponse

Response body (application/json):
- **data** (object)
  - **period** (string)
  - **groupBy** (string)
  - **startDate** (string(date-time))
  - **endDate** (string(date-time))
  - **generatedAt** (string(date-time))
  - **summary** (object)
    - **totalSessions** (integer(int32))
    - **totalEvents** (integer(int32))
    - **uniqueBots** (integer(int32))
    - **uniqueUsers** (integer(int32))
    - **averageBotScore** (number(double))
    - **averageEventsPerSession** (number(double))
  - **timeSeries** (array[object])
    Array items:
    - **timestamp** (string(date-time))
    - **sessionCount** (integer(int32))
    - **eventCount** (integer(int32))
    - **botCount** (integer(int32))
    - **userMatchedCount** (integer(int32))
  - **botDetection** (object)
    - **highConfidenceBots** (integer(int32))
    - **mediumConfidenceBots** (integer(int32))
    - **lowConfidenceBots** (integer(int32))
    - **likelyHumans** (integer(int32))
  - **userMatching** (object)
    - **totalMatched** (integer(int32))
    - **totalUnmatched** (integer(int32))
    - **matchRate** (number(double))
    - **averageCorrelationConfidence** (number(double))
  - **topOrigins** (array[object])
    Array items:
    - **origin** (string)
    - **sessionCount** (integer(int32))
    - **botPercentage** (number(double))
  - **deviceBreakdown** (object)
    - **mobile** (integer(int32))
    - **tablet** (integer(int32))
    - **desktop** (integer(int32))
    - **browserCounts** (object)

### 400
Payload of ErrorEnvelope

Response body (application/json):
- **error** (object)
  - **code** (string)
  - **message** (string)
  - **details** (object)

### 401
Payload of ErrorEnvelope

Response body (application/json):
- **error** (object)
  - **code** (string)
  - **message** (string)
  - **details** (object)

