# AirdropPulse Campaign Registry

> AirdropPulse Campaign Registry is a paid API for AI agents from airdroppulse.theaslangroupllc.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Returns a curated, verifiably live registry of active airdrop and points campaigns across blockchain networks, including earning mechanics, entry routes, deadlines, eligibility notes, and source-verified metadata.

## Facts

- Endpoint: GET https://airdroppulse.theaslangroupllc.com/api/campaigns
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/airdroppulse-campaign-registry-43e588af
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_e4bZcYKoPYMoKZxDGbBlx

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-campaign-registry-43e588af
```

Example prompt: Pull the current list of live airdrop and points campaigns from AirdropPulse — I want to see which ones are still open, what I need to do to qualify, and when they expire.

## When to prefer this

Choose this endpoint when an agent needs a curated, source-verified snapshot of currently live airdrop and points campaigns across multiple chains, especially when eligibility details, deadlines, and entry mechanics matter. Prefer this over generic web search when you need machine-readable, structured campaign data with explicit sybil notes and verification timestamps. Particularly useful when researching GigaDex/Robinhood Chain campaigns that benefit from live indexer enrichment.

## Known failure modes

- Payment not received or x402 auth failure — returns 402 Payment Required
- No live campaigns currently in registry — returns empty list
- GigaDex indexer temporarily unavailable — GigaDex entries may be stale or absent
- Rate limit exceeded — returns 429 Too Many Requests
- Verification source temporarily unreachable — entries may show stale verification dates

## How this service works

Curated registry of VERIFIABLY LIVE airdrop/points campaigns across chains — the "what can capital or activity earn right now" map for agents: per campaign the published earning mechanics, entry route, deadline, sybil/eligibility notes, token status, and the first-party source + date each entry was verified against. GigaDex (Robinhood Chain) entries enriched live from the open indexer. Curated facts, not endorsements — no EV claims, no recommendations.

## Output

A JSON list of live airdrop/points campaigns, each containing: campaign name, blockchain(s), earning mechanics, entry route, deadline, sybil/eligibility notes, token status (confirmed/unannounced), first-party verification source URL, and verification date. GigaDex entries on Robinhood Chain are enriched with live data from an open indexer. No EV claims or recommendations are included.

## 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": {
      "chain": {
       "type": "string",
       "description": "substring filter on chain name, e.g. \"robinhood\", \"solana\" (default: all)"
      },
      "category": {
       "type": "string",
       "description": "filter: perp-dex | dex-lp | depin | restaking | other (default: all)"
      }
     }
    }
   },
   "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": {
  "count": 1,
  "method": "Curated first-party-verified registry; statuses are as of each entry's verified_at date.",
  "campaigns": [
   {
    "id": "gigadex-points-s1",
    "live": {
     "farmers": 144,
     "days_left": 33.5
    },
    "chains": [
     "robinhood (4663)"
    ],
    "status": "live",
    "ends_at": "2026-08-31",
    "project": "GigaDex",
    "category": "dex-lp",
    "entry_route": "https://gigadex.fi",
    "verified_at": "2026-07-28",
    "token_confirmed": false,
    "what_earns_points": "In-range concentrated-liquidity positions in eligible pools…"
   }
  ],
  "disclaimer": "Educational analytics… not investment advice."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/airdroppulse-campaign-registry-43e588af/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)
