# AirdropPulse GigaDex Position Points Audit

> AirdropPulse GigaDex Position Points Audit 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-16).

Audits historical points accrual, in-range status, and share of total emitted campaign points for a GigaDex concentrated-liquidity position NFT or all positions under an account on Robinhood Chain.

## Facts

- Endpoint: GET https://airdroppulse.theaslangroupllc.com/api/points/position-audit
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/airdroppulse-gigadex-position-points-audit-a77eb153
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6D5OG9JIVCIzOPzetqdrh

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-position-points-audit-a77eb153
```

Example prompt: Can you audit GigaDex points for my LP position NFT #4892 on Robinhood Chain — show me how many campaign points it's accrued historically, whether it's currently in range, and what share of total emitted points it represents?

## When to prefer this

Use this endpoint when you need a detailed historical audit of GigaDex campaign points for one or more LP positions on Robinhood Chain, including in-range status and share of total emitted points. Prefer this over the campaign clock or rankings endpoints when you need per-position granularity rather than aggregate campaign-level data.

## Known failure modes

- Invalid or non-existent position NFT ID returns an error or empty result
- Account address with no GigaDex positions returns an empty positions array
- RPC read failure causes stale or unavailable tick data
- Position outside current price range returns in-range status false with zero ongoing accrual
- Network congestion on Robinhood Chain may delay live tick reads

## How this service works

GigaDex position points audit (Robinhood Chain) — historical points accrual, in-range status and share of total emitted campaign points for a single position NFT or every position under an account, computed live from the open on-chain indexer and a fresh RPC tick read. Analytics only.

## Output

Returns a structured audit report including historical points accrued per position, current in-range status (whether the position is actively earning), and the position's percentage share of total campaign points emitted so far — computed live from the on-chain indexer and a fresh RPC tick read.

## 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": {
      "account": {
       "type": "string",
       "description": "account address 0x… — audits every position held by the account (either this or token_id is required)"
      },
      "token_id": {
       "type": "string",
       "description": "GigaDex position NFT token id (either this or account is required)"
      }
     }
    }
   },
   "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": "projected_points assumes the trailing accrual rate (points ÷ days elapsed) persists to campaign end — a historical extrapolation, not a prediction.",
  "position": {
   "pair": "WETH/PONS",
   "pool": "0x50e4…",
   "owner": "0xabc…",
   "points": 812.4,
   "in_range": true,
   "token_id": "4821",
   "raw_points": 812.4,
   "tick_lower": 104960,
   "tick_upper": 110400,
   "fee_pending_0": 0.0021,
   "fee_pending_1": 4.1,
   "pct_through_band": 0.52
  },
  "disclaimer": "Educational analytics… not investment advice.",
  "share_of_emitted_points_pct": 0.067,
  "projected_points_at_campaign_end": 3120.5
 }
}
```

## More

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