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

# Get analytics



## OpenAPI

````yaml /openapi/openapi.json get /apps/{appId}/analytics
openapi: 3.0.2
info:
  title: AGG API
  version: 1.0.0
  description: >-
    Prediction market aggregator REST API — authentication, users, venue events,
    venue markets, orderbooks, charts, and execution workflows.
servers:
  - url: https://api.agg.market
    description: Production
  - url: https://api.staging.agg.market
    description: Staging
security: []
paths:
  /apps/{appId}/analytics:
    get:
      tags:
        - App Management
      summary: Get analytics
      operationId: getAppAnalytics
      parameters:
        - name: appId
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: '200'
          content:
            application/json:
              schema:
                type: object
                required:
                  - totalUsers
                  - totalOrders
                  - ordersByStatus
                  - ordersByVenue
                  - usersLast30Days
                  - usersLast7Days
                  - ordersLast30Days
                  - ordersLast7Days
                  - totalCashUsd
                  - totalPositionValueUsd
                  - totalPositionCostBasisUsd
                  - totalFeesCollectedUsd
                  - totalFeeRevenueUsd
                  - totalPlatformFeeShareUsd
                  - depositsByChain
                properties:
                  totalUsers:
                    type: number
                  totalOrders:
                    type: number
                  ordersByStatus:
                    type: object
                    additionalProperties:
                      type: number
                  ordersByVenue:
                    type: object
                    additionalProperties:
                      type: number
                  usersLast30Days:
                    type: number
                  usersLast7Days:
                    type: number
                  ordersLast30Days:
                    type: number
                  ordersLast7Days:
                    type: number
                  totalCashUsd:
                    type: number
                  totalPositionValueUsd:
                    type: number
                  totalPositionCostBasisUsd:
                    type: number
                  totalFeesCollectedUsd:
                    type: number
                  totalFeeRevenueUsd:
                    type: number
                  totalPlatformFeeShareUsd:
                    type: number
                  depositsByChain:
                    type: object
                    additionalProperties:
                      type: number
        '401':
          description: '401'
          content:
            application/json:
              schema:
                type: object
                required:
                  - message
                properties:
                  message:
                    type: string
        '403':
          description: '403'
          content:
            application/json:
              schema:
                type: object
                required:
                  - message
                properties:
                  message:
                    type: string
      security:
        - appApiKey: []
components:
  securitySchemes:
    appApiKey:
      type: apiKey
      in: header
      name: x-app-api-key
      description: App-scoped API key for programmatic app management.

````