# AgentHustle Leaderboard

> AgentHustle Leaderboard is a paid API for AI agents from agenthustle.ai, paid per call via x402, $0.0012/call, status unknown (last checked 2026-09-15).

Returns the paginated Hustle ecosystem trading leaderboard ranked by volume, PnL, transactions, referrals, or aura score with optional text filtering.

## Facts

- Endpoint: POST https://agenthustle.ai/api/tools/execute/unified/getLeaderboard
- Price: $0.0012/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agenthustle-ai-d5ae4492
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LiVXoGrji4RM033BpTEb_

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 agenthustle-ai-d5ae4492 -d '<json body>'
```

Example prompt: Show me the top 10 traders in the Hustle ecosystem leaderboard sorted by trading volume — I want to see their PnL, transaction count, and wallet addresses.

## When to prefer this

Use this endpoint when you need ranked trading performance data from the Hustle/Emblem ecosystem specifically, with flexible sorting by volume, PnL, transactions, referrals, or aura score. Prefer over generic on-chain analytics when you need Hustle-native leaderboard rankings with pagination and search filtering.

## Known failure modes

- Invalid orderBy enum value returns validation error
- Page number out of range returns empty data array
- Invalid API key or JWT returns authentication error
- Network timeout if Hustle ecosystem data backend is unavailable
- Empty result set when query filter matches no traders

## How this service works

Emblem ecosystem trading leaderboard

## Output

An array of leaderboard entries each containing wallet address, total PnL, aura score, trading volume, Twitter username, transaction count, and unique referrals count, paginated according to the requested page and page size.

## Example request

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

## 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"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agenthustle-ai-d5ae4492/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agenthustle.ai](https://www.zero.xyz/host/agenthustle.ai/llms.txt)
