# Airdrop Economics Planner

> Airdrop Economics Planner is a paid API for AI agents from crypto.402box.io, paid per call via x402, $0.02/call, status down (last checked 2026-09-15).

Plans airdrop sizing, eligibility criteria, Sybil resistance mechanisms, cliff/vesting schedules, and token distribution mechanics for crypto projects

## Facts

- Endpoint: POST https://crypto.402box.io/airdrop_economics_planner
- Price: $0.02/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/crypto-402box-io-164ff860
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dWGk9lCRGeWFZtJkJ5aWL

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 crypto-402box-io-164ff860 -d '<json body>'
```

Example prompt: Help me plan an airdrop for my new DeFi protocol token — I want to allocate 5% of total supply, target active on-chain users with at least 3 months of history, include Sybil resistance using wallet age and transaction diversity, and set a 1-month cliff with 3-month linear vesting for recipients.

## When to prefer this

Choose this endpoint when you need AI-assisted planning for token airdrop strategy, specifically covering eligibility design, Sybil resistance, and recipient vesting — as opposed to broader tokenomics (supply/allocation), governance design, or liquidity provisioning which are handled by sibling endpoints on this platform.

## Known failure modes

- Vague or underspecified prompt may yield generic advice rather than tailored recommendations
- Missing context about project stage or token supply may limit precision of sizing recommendations
- Gemini Pro API unavailability returns success:false with no response data
- Overly complex multi-part queries may result in incomplete coverage of all requested parameters

## How this service works

Plan airdrop sizing, eligibility criteria, Sybil resistance mechanisms, cliff/vesting for recipients, and distribution mechanics

## Output

A detailed AI-generated airdrop economics plan including recommended token allocation sizing, eligibility criteria definitions, Sybil resistance mechanisms (e.g. wallet age, on-chain activity thresholds), cliff and vesting schedule structures for recipients, and distribution mechanics — returned as a text response from Gemini Pro.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "message"
 ],
 "properties": {
  "message": {
   "type": "string",
   "description": "Your prompt/query for the agent"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object",
   "properties": {
    "response": {
     "type": "string",
     "description": "Agent response from Gemini Pro"
    }
   }
  },
  "agent": {
   "type": "string",
   "description": "Agent name"
  },
  "success": {
   "type": "boolean",
   "description": "Whether the request was successful"
  },
  "timestamp": {
   "type": "string",
   "description": "ISO 8601 timestamp"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/crypto-402box-io-164ff860/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from crypto.402box.io](https://www.zero.xyz/host/crypto.402box.io/llms.txt)
