zScore Docs
  • Core
    • What is zScore
    • How It Works
    • Operational Mechanics
  • For Operators
    • Mainnet
      • Quickstart (Mainnet)
      • Registration (Mainnet)
  • For Protocols
    • Overview
    • zPass
      • Getting Started
      • Use Cases
        • Risk Assessment
        • User Segmentation
        • Sybil Detection
        • Reputation Scoring
      • API Reference
        • Get zScore by Wallet
        • Get Wallets zScore
        • Get Wallets by Protocol
        • Get All Categories
        • Get Protocol Analytics by Wallet
        • Get Global Protocol Analytics
Powered by GitBook
On this page
  1. For Protocols
  2. zPass
  3. API Reference

Get Global Protocol Analytics

Fetch global analytics for a specific protocol

PreviousGet Protocol Analytics by Wallet

Retrieve comprehensive ecosystem-wide analytics and insights for specific protocols.

Primary Uses:

  • Protocol ecosystem analysis

  • Market research and competitive intelligence

  • User base sizing and distribution analysis

  • Multi-chain adoption tracking

Analytics Include:

  • Total Users: Complete wallet count across all chains

  • Network Distribution: Chain-by-chain usage breakdown

  • Transaction Volume: Total protocol interactions

  • Score Distribution: User quality segmentation

  • Growth Metrics: Adoption trends and patterns

Returns: Comprehensive protocol analytics with multi-chain insights

Get global protocol analytics

get

Retrieves comprehensive global analytics for a specific protocol.

Authorizations
Query parameters
protocol_namestringRequired

Name of the protocol to get global analytics for.

Responses
200
Global analytics for the specified protocol
application/json
get
GET /zpass/api/analytics/global HTTP/1.1
Host: api.testnet.myzscore.ai
x-api-key: YOUR_API_KEY
Accept: */*
200

Global analytics for the specified protocol

{
  "protocol": "aave",
  "totalWallets": 1722669,
  "uniqueNetworksCount": 17,
  "totalTransactions": 43020282,
  "networkStats": [
    {
      "network": "polygon",
      "transactionCount": 15980804,
      "uniqueWalletCount": 432213
    },
    {
      "network": "arbitrum",
      "transactionCount": 5978711,
      "uniqueWalletCount": 362240
    }
  ],
  "scoreRanges": [
    {
      "range": {
        "start": 0,
        "end": 100
      },
      "walletCount": 12787
    },
    {
      "range": {
        "start": 100,
        "end": 200
      },
      "walletCount": 1273520
    }
  ],
  "updatedAt": "2025-05-30T17:58:33.399Z"
}