# AirdropPulse GigaDex Points Campaign Status

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

Returns live campaign clock, elapsed/remaining days, farmer count, and emission progress for the GigaDex points campaign on Robinhood Chain, plus an implied-value scenario table across illustrative FDVs.

## Facts

- Endpoint: GET https://airdroppulse.theaslangroupllc.com/api/points/campaign-status
- Price: $0.05/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-campaign-status-266cda1a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SLd9iHqx7XfRm4tekM8dU

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-campaign-status-266cda1a
```

Example prompt: Pull the current GigaDex points campaign status from AirdropPulse — I want to see how many days have elapsed and remain, how many farmers are active, how far along the emissions are, and what the implied point values look like at a few different FDVs on Robinhood Chain.

## When to prefer this

Use this endpoint when you need a live, single-call snapshot of the GigaDex points campaign lifecycle on Robinhood Chain — including time remaining, participation size, and emission progress — combined with a hypothetical FDV-based value table. Prefer it over manual on-chain queries when you want pre-computed analytics without building your own indexer pipeline. If you need per-pool rankings or individual position audits, use the sibling endpoints instead.

## Known failure modes

- On-chain indexer unavailable — may return 503 or stale data
- Campaign has ended — status field reflects concluded state, remaining days returns 0
- Invalid or missing campaign ID — returns 400 with error message
- Rate limit or payment failure — returns 402 if USDC payment not processed
- Network congestion on Robinhood Chain causing delayed indexer updates

## How this service works

GigaDex points campaign clock (Robinhood Chain) — status, elapsed/remaining days, farmer count and emission progress read live from the on-chain indexer, plus a hypothetical implied-value scenario table across illustrative FDVs. Analytics only, no redemption terms are official or implied.

## Output

Returns a JSON object containing: campaign status (active/ended), elapsed days since campaign start, remaining days until campaign end, total farmer count currently participating, cumulative emission progress as a percentage or absolute figure, and a scenario table showing hypothetical implied point values across a range of illustrative fully-diluted valuations (FDVs). All data is read live from the on-chain indexer. No redemption terms are official.

## 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": {
      "fdv_usd": {
       "type": "string",
       "description": "optional additional fully-diluted-valuation scenario in USD to add to the illustrative table"
      },
      "giga_per_point": {
       "type": "string",
       "description": "UNOFFICIAL community-implied GIGA-per-point figure used only for the hypothetical scenario table (default: 15; GigaDex has not confirmed any redemption terms)"
      }
     }
    }
   },
   "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": {
  "method": "Hypothetical scenario illustrations only — GIGA supply (1B) is an assumption and redemption terms (points -> GIGA) are unannounced by GigaDex.",
  "campaign": {
   "id": "giga-points-season-1",
   "end": "2026-08-31T00:00:00.000Z",
   "start": "2026-07-01T00:00:00.000Z",
   "status": "ACTIVE",
   "farmers": 132,
   "days_left": 36.7,
   "pct_emitted": 26.4,
   "days_elapsed": 24.3,
   "total_points": 4600000,
   "eligible_pools": 6,
   "emitted_points": 1214000,
   "emission_rate_per_day": 50000
  },
  "disclaimer": "Educational analytics… not investment advice.",
  "implied_value_scenarios": [
   {
    "fdv_usd": 10000000,
    "giga_per_point": 15,
    "implied_usd_per_point": 0.00015
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/airdroppulse-gigadex-points-campaign-status-266cda1a/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)
