# AirdropPulse GigaDex Points-Per-Dollar Pool Ranking

> AirdropPulse GigaDex Points-Per-Dollar Pool Ranking is a paid API for AI agents from airdroppulse.theaslangroupllc.com, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-14).

Returns all GigaDex pools on Robinhood Chain ranked by historically observed campaign points earned per $1k TVL per day, with multiplier, TVL, volume, and fee context computed live from the on-chain indexer.

## Facts

- Endpoint: GET https://airdroppulse.theaslangroupllc.com/api/points/pool-ev
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/airdroppulse-gigadex-points-per-dollar-pool-ranking-ef888dbb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5oQeOdn6YUYAuKAHDoppb

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 airdroppulse-gigadex-points-per-dollar-pool-ranking-ef888dbb
```

Example prompt: Show me all GigaDex pools ranked by points earned per $1k of TVL per day on Robinhood Chain — I want to see the multipliers, TVL, and fee context so I can pick the most efficient pool for farming the points campaign.

## When to prefer this

Choose this endpoint when you need a comprehensive, live ranking of ALL eligible GigaDex pools by points efficiency — especially when deciding where to allocate liquidity for maximum airdrop yield. Prefer this over the position audit or campaign clock endpoints when your goal is cross-pool comparison rather than monitoring a specific position or checking campaign timing.

## Known failure modes

- Indexer lag may cause stale data if on-chain data pipeline is behind
- Empty result set if no pools are currently in an active campaign period
- HTTP 402 if USDC payment header is missing or insufficient (x402 protocol)
- Rate limiting or timeout if the on-chain indexer is under load
- Partial data if some pools have insufficient historical observation data for reliable ranking

## How this service works

GigaDex points-per-dollar ranking (Robinhood Chain) — every eligible pool ranked by historically observed campaign points earned per $1k of TVL per day, with multiplier, TVL, volume and fee context. The pools differ by 100x+ on this metric; computed live from the open on-chain indexer. Analytics only.

## Output

A ranked list of all eligible GigaDex pools on Robinhood Chain, each entry including: points earned per $1k TVL per day (the key EV metric), current multiplier, total value locked (TVL), trading volume, and fee tier — computed live from the on-chain indexer. Pools can differ by 100x+ on the primary metric.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "min_tvl_usd": {
       "type": "string",
       "description": "exclude pools below this TVL in USD (default: 1000)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "errors": {
     "type": "object",
     "description": "Documented error responses, keyed by HTTP status code",
     "additionalProperties": {
      "type": "object",
      "required": [
       "description"
      ],
      "properties": {
       "example": {
        "type": "object"
       },
       "description": {
        "type": "string"
       }
      }
     }
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "pools": [
   {
    "pair": "PONS/USDG",
    "rank": 1,
    "address": "0x50e4…",
    "tvl_usd": 37800,
    "multiplier": 1.5,
    "fee_apr_pct": 12.1,
    "points_total": 9575.5,
    "volume_24h_usd": 5900000,
    "points_per_1k_tvl_per_day": 48.7
   }
  ],
  "method": "points_per_1k_tvl_per_day = cumulative pool points ÷ campaign days elapsed ÷ (TVL/$1k); historical average, not a forward rate",
  "campaign": {
   "id": "giga-points-season-1",
   "farmers": 120,
   "days_left": 36.8,
   "days_elapsed": 5.2
  },
  "disclaimer": "Educational analytics… not investment advice."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/airdroppulse-gigadex-points-per-dollar-pool-ranking-ef888dbb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from airdroppulse.theaslangroupllc.com](https://www.zero.xyz/host/airdroppulse.theaslangroupllc.com/llms.txt)
