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 All Categories

Get all available categories and protocols

PreviousGet Wallets by ProtocolNextGet Protocol Analytics by Wallet

Retrieve comprehensive metadata about supported DeFi categories and protocols.

Primary Uses:

  • API discovery and integration planning

  • Protocol coverage analysis

  • Category-based filtering setup

  • System configuration and mapping

Categories Include:

  • Lending: Aave, Compound, Morpho

  • DEX: Uniswap, SushiSwap, Curve

  • Restaking: EigenLayer, Symbiotic

  • Gaming: Axie Infinity, The Sandbox

  • Governance: Snapshot, Tally

Returns: Complete list of categories and their associated protocols

Get all categories

get

Retrieves all available categories and their associated protocols.

Authorizations
Responses
200
List of all available categories and protocols
application/json
get
GET /zpass/api/zscore/categories HTTP/1.1
Host: api.testnet.myzscore.ai
x-api-key: YOUR_API_KEY
Accept: */*
200

List of all available categories and protocols

{
  "categories": [
    "lending",
    "dex",
    "restaking"
  ],
  "protocols": [
    {
      "name": "aave",
      "category": "lending"
    },
    {
      "name": "uniswap",
      "category": "dex"
    }
  ]
}