# AirdropPulse Stock-Backing Analytics

> AirdropPulse Stock-Backing Analytics 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 real-time stock-backing analytics for a meme/AI token on GigaDex (Robinhood Chain), including FDV, price, concentrated-liquidity pool depth, and the underlying stock asset backing the token.

## Facts

- Endpoint: GET https://airdroppulse.theaslangroupllc.com/api/long/stock-backing
- 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-stock-backing-analytics-c484cff2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7eWgRxpPyQzuOLR957uRC

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-stock-backing-analytics-c484cff2
```

Example prompt: What's the current stock-backing analytics for the AI token on GigaDex — give me the FDV, pool depth at 5% and 25%, the backing stock price, and how much of that stock is sitting in meme pools right now.

## When to prefer this

Use this endpoint when you need real-time, machine-readable analytics specifically for stock-backed meme tokens on GigaDex (Robinhood Chain), particularly the AI/NVDA token pair. It is the only known data source covering GigaDex points campaigns and stock-backing ratios on this chain. Prefer it over generic DeFi analytics when you need the stock-in-pool percentage metric or concentrated liquidity depth alongside stock peg data. The x402 pay-per-call model means no API key management is required.

## Known failure modes

- Token not found or unsupported — returns empty or error JSON
- Pool is inactive or not yet seeded — pool status returned as non-live with null depth values
- Payment not received or insufficient USDC — 402 Payment Required response
- Network congestion on Robinhood Chain causing stale or delayed data
- Invalid token address format — API returns validation error

## How this service works

Stock-backing analytics for LONG.xyz / Doppler launches on Robinhood Chain: live price in stock and USD, FDV, sell-side depth at -2/-5/-10/-25% moves, cumulated fees, backing-stock float share. Omit token for the aggregate table: share of each Robinhood stock token held in the v4 meme-pool singleton. Deterministic on-chain reads, analytics only.

## Output

Returns a JSON object with: the token address and symbol, the FDV in USD, the current token price in USD and in stock units, the backing stock label (e.g. NVDA) and its USD price, the concentrated liquidity pool status (live/inactive), sell-side depth percentages at 5% and 25% price impact, and the percentage of the backing stock held in meme pools.

## 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": {
      "token": {
       "type": "string",
       "description": "optional — omit for the per-stock aggregate backing table"
      }
     }
    }
   },
   "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": {
  "fdv": {
   "usd": 4502500
  },
  "pool": {
   "status": "live",
   "sell_side_depth_stock": {
    "pct_5": 30.7,
    "pct_25": 143.1
   }
  },
  "price": {
   "usd": 0.0045,
   "in_stock": 0.0000217
  },
  "token": "0x2e8c…111e18",
  "symbol": "AI",
  "backing_stock": {
   "label": "NVDA (NVIDIA • Robinhood Token)",
   "price_usd": 207.5
  },
  "stock_in_meme_pools": {
   "pct": 40.29
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/airdroppulse-stock-backing-analytics-c484cff2/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)
