# Emblem Ecosystem BASE_USDC Trading Leaderboard

> Emblem Ecosystem BASE_USDC Trading Leaderboard is a paid API for AI agents from hustle-v2-qddwxsqsl-emblem-062a811d.vercel.app, paid per call via x402, $0.0012/call, status down (last checked 2026-09-15).

Fetches a paginated trading leaderboard for the Emblem ecosystem BASE_USDC market, ranked by volume, PnL, transactions, referrals, or aura score.

## Facts

- Endpoint: POST https://hustle-v2-qddwxsqsl-emblem-062a811d.vercel.app/api/tools/execute/BASE_USDC/getLeaderboard
- Price: $0.0012/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/emblem-ecosystem-base-usdc-trading-leaderboard-44f00196
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vU9YDpIWb4BawCEUkuDWk

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability emblem-ecosystem-base-usdc-trading-leaderboard-44f00196 -d '<json body>'
```

Example prompt: Show me the top 20 Emblem ecosystem traders for BASE_USDC on page 1, sorted by trading volume — I want to see their wallet addresses, PnL, aura scores, and referral counts.

## When to prefer this

Use this endpoint when you need ranked trading data specifically from the Emblem Vault ecosystem on the BASE_USDC market, with support for multi-metric sorting (volume, PnL, transactions, referrals, aura) and user search. Prefer this over generic on-chain analytics when you need Emblem-specific aura scores and referral tracking.

## Known failure modes

- Invalid orderBy enum value returns validation error
- Page number out of range returns empty data array
- Invalid or missing API key/JWT may restrict access to certain data
- Network or server error returns 5xx response
- Malformed request body returns 400 bad request

## How this service works

Fetch the Emblem ecosystem trading leaderboard for BASE_USDC with pagination and optional query filtering.

## Output

Returns a paginated array of trader records, each containing wallet address, total PnL, aura score, trading volume, Twitter username, transaction count, and unique users referred, ordered by the specified metric.

## Example request

```json
{
 "page": 1,
 "query": "",
 "orderBy": "volume",
 "pageSize": 20
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "page": {
   "type": "number",
   "default": 1,
   "description": "The page number of the leaderboard"
  },
  "query": {
   "type": "string",
   "description": "The query of the leaderboard"
  },
  "apiKey": {
   "type": "string",
   "description": "Optional Vault API key"
  },
  "orderBy": {
   "enum": [
    "volume",
    "transactions",
    "referrals",
    "aura",
    "pnl"
   ],
   "type": "string",
   "default": "volume",
   "description": "The order by of the leaderboard"
  },
  "pageSize": {
   "type": "number",
   "default": 20,
   "description": "The page size of the leaderboard"
  },
  "emblemJwt": {
   "type": "string",
   "description": "Optional Emblem Vault JWT"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "tool",
  "result",
  "timestamp",
  "callerType"
 ],
 "properties": {
  "tool": {
   "type": "string"
  },
  "result": {
   "type": "object",
   "required": [
    "data",
    "page",
    "total",
    "pageSize",
    "totalPages"
   ],
   "properties": {
    "data": {
     "type": "array",
     "items": {
      "type": "object",
      "required": [
       "address",
       "totalPnL",
       "auraScore",
       "trading_volume",
       "twitterUsername",
       "transaction_count",
       "unique_users_referred"
      ],
      "properties": {
       "address": {
        "type": "string"
       },
       "totalPnL": {
        "type": "number"
       },
       "auraScore": {
        "type": "number"
       },
       "trading_volume": {
        "type": "number"
       },
       "twitterUsername": {
        "type": "string"
       },
       "transaction_count": {
        "type": "number"
       },
       "unique_users_referred": {
        "type": "number"
       }
      }
     }
    },
    "page": {
     "type": "number"
    },
    "total": {
     "type": "number"
    },
    "pageSize": {
     "type": "number"
    },
    "totalPages": {
     "type": "number"
    }
   }
  },
  "timestamp": {
   "type": "string"
  },
  "callerType": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/emblem-ecosystem-base-usdc-trading-leaderboard-44f00196/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from hustle-v2-qddwxsqsl-emblem-062a811d.vercel.app](https://www.zero.xyz/host/hustle-v2-qddwxsqsl-emblem-062a811d.vercel.app/llms.txt)
