# Get User Stats

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /v1/users/stats:
    get:
      summary: Get User Stats
      deprecated: false
      description: Return file & zone stats for Application website.
      tags:
        - Snapbyte APIs/Basic
      parameters: []
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  zones:
                    type: array
                    items:
                      type: string
                  files:
                    type: array
                    items:
                      type: string
                x-apidog-orders:
                  - zones
                  - files
                required:
                  - zones
                  - files
              example:
                success: true
                data:
                  zones:
                    - month: 2025-07
                      total_unique_downloaders: '33123'
                      total_requests: '11650570'
                      total_data_served: '102800402517204'
                    - month: 2025-06
                      total_unique_downloaders: '0'
                      total_requests: '0'
                      total_data_served: '0'
                  files:
                    - period: this_month
                      file_count: '356814'
                      total_file_size: '994337660966397'
                    - period: last_month
                      file_count: '353471'
                      total_file_size: '982788810481558'
          headers: {}
          x-apidog-name: Success
      security: []
      x-apidog-folder: Snapbyte APIs/Basic
      x-apidog-status: released
      x-run-in-apidog: https://app.apidog.com/web/project/991601/apis/api-19284367-run
components:
  schemas: {}
  securitySchemes: {}
servers:
  - url: https://api.snapbyte.io
    description: Prod Env
security: []

```
