v1

latestOpenAPI 3.1.0MITraw.githubusercontent.com2025-07-16390274.5 KB
Analytics

Get system-wide statistics

Returns comprehensive system metrics (admin only)

get/api/v1/analytics/system

Query parameters

period'24h' | '7d' | '30d'

Response

typestring required

Example response

{
  "type": "object",
  "properties": {
    "overview": {
      "type": "object",
      "properties": {
        "totalOrganizations": {
          "type": "number"
        },
        "totalUsers": {
          "type": "number"
        },
        "totalBids": {
          "type": "number"
        },
        "totalVolume": {
          "type": "string"
        },
        "avgOrganizationSize": {
          "type": "number"
        }
      }
    },
    "growth": {
      "type": "object",
      "properties": {
        "newOrganizations": {
          "type": "number"
        },
        "newUsers": {
          "type": "number"
        },
        "growthRate": {
          "type": "number"
        }
      }
    },
    "activity": {
      "type": "object",
      "properties": {
        "activeOrganizations": {
          "type": "number"
        },
        "dailyApiCalls": {
          "type": "number"
        },
        "avgBidsPerOrg": {
          "type": "number"
        }
      }
    }
  }
}