zScore Docs
  • Core
    • What is zScore
    • How It Works
    • Operational Mechanics
  • For Operators
    • Mainnet
      • Quickstart (Mainnet)
      • Registration (Mainnet)
  • For Protocols
    • Overview
    • zPass
      • Getting Started
      • API Reference
        • Get zScore by Wallet
        • Get Wallets zScore
        • Get Wallets by Protocol
        • Get Protocol Risk Clusters
        • Get wallet analytics by protocol
        • 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 wallet analytics by protocol

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
Path parameters
protocol_namestringRequired

Name of the protocol to get global analytics for.

Example: aave
Header parameters
x-api-keystringRequired

API key for authentication

Default: cf1cec687fe2938f62d6b53b460b0db9998f64ef612e974980cff8423597ec93
Responses
200
Global analytics for the specified protocol
application/json
get
GET /zpass/api/analytics/global/{protocol_name} HTTP/1.1
Host: api.myzscore.ai
x-api-key: cf1cec687fe2938f62d6b53b460b0db9998f64ef612e974980cff8423597ec93
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"
}