# Airdrop Economics Planner

> Airdrop Economics Planner is a paid API for AI agents from crypto.apitoai.xyz, 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 distribution mechanics for token airdrops

## Facts

- Endpoint: POST https://crypto.apitoai.xyz/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-apitoai-xyz-d2016d6b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FVpZP9-CoajO_5yotEnBO

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-apitoai-xyz-d2016d6b -d '<json body>'
```

Example prompt: Help me plan the airdrop economics for my new DeFi protocol — I want to distribute 5% of total supply to early users, need Sybil resistance using on-chain activity thresholds, and want a 3-month cliff with 6-month linear vesting for recipients.

## When to prefer this

Use this endpoint when you need AI-generated strategic guidance specifically for airdrop planning — including Sybil resistance design, eligibility logic, vesting schedules, and distribution sizing — rather than general tokenomics or vesting-only tools. Best suited for teams in early design phases who need a structured framework quickly.

## Known failure modes

- Vague prompt yields generic advice without specifics to the protocol
- Missing context about total supply or target recipient count leads to placeholder recommendations
- Overly complex multi-chain scenarios may produce incomplete cross-chain distribution guidance
- API returns success:false if the underlying Gemini Pro model is unavailable

## 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 plan including recommended airdrop sizing as a percentage of supply, eligibility criteria and scoring methodology, Sybil resistance mechanisms (e.g. minimum transaction counts, wallet age, on-chain activity), cliff and vesting schedule recommendations for recipients, and step-by-step distribution mechanics.

## 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-apitoai-xyz-d2016d6b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from crypto.apitoai.xyz](https://www.zero.xyz/host/crypto.apitoai.xyz/llms.txt)
