# PalmVox Airdrop Radar

> PalmVox Airdrop Radar is a paid API for AI agents from alpha.palmvox.com, paid per call via x402, $0.01/call, status down (last checked 2026-09-15).

Returns a curated list of upcoming and active crypto airdrops for Base ecosystem tokens, including eligibility hints, estimated value ranges, and deadlines.

## Facts

- Endpoint: GET https://alpha.palmvox.com/api/airdrop/radar
- Price: $0.01/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/alpha-palmvox-com-bd4ed4cd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0pQMqBc1xNhJlIz8o6zk_

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 alpha-palmvox-com-bd4ed4cd
```

Example prompt: What Base ecosystem airdrops are active or coming up right now — include which ones I might be eligible for and how much they could be worth?

## When to prefer this

Use this endpoint when an agent needs to discover actionable airdrop opportunities in the Base ecosystem, especially when the user wants to know what on-chain actions to take to qualify for upcoming token distributions. Prefer over generic crypto news APIs when Base-specific, structured eligibility data with estimated value ranges is needed. One of only 3 airdrop services on the x402 network.

## Known failure modes

- No airdrops currently tracked — returns empty array with count 0
- Upstream data source unavailable — stale or missing entries
- Payment not processed — 402 response requiring x402 payment of $0.01 USDC
- Network error or timeout from DeFi data sources
- Eligibility data may be approximate or community-sourced and not guaranteed accurate

## How this service works

Airdrop radar — upcoming and active crypto airdrops for Base ecosystem tokens. Eligibility hints, estimated value, and deadlines. Only 3 airdrop services on x402.

## Output

Returns a JSON object with a count field and an array of airdrop entries, each containing: project name, chain, current status (ongoing/active/upcoming), eligibility criteria, estimated value range in USD, and a recommended on-chain action to qualify. Includes a disclaimer that data is curated from on-chain data and community intel and is not financial advice.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {}
 }
}
```

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "count": {
       "type": "number"
      },
      "airdrops": {
       "type": "array"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "note",
  "count",
  "airdrops",
  "lastUpdated",
  "trackRecord",
  "alsoAvailable"
 ],
 "properties": {
  "note": {
   "type": "string"
  },
  "count": {
   "type": "number"
  },
  "airdrops": {
   "type": "array",
   "items": {
    "type": "object",
    "required": [
     "chain",
     "action",
     "status",
     "project",
     "eligibility",
     "estimatedValue"
    ],
    "properties": {
     "chain": {
      "type": "string"
     },
     "action": {
      "type": "string"
     },
     "status": {
      "type": "string"
     },
     "project": {
      "type": "string"
     },
     "eligibility": {
      "type": "string"
     },
     "estimatedValue": {
      "type": "string"
     }
    }
   }
  },
  "lastUpdated": {
   "type": "string"
  },
  "trackRecord": {
   "type": "string"
  },
  "alsoAvailable": {
   "type": "array",
   "items": {
    "type": "object",
    "required": [
     "url",
     "price"
    ],
    "properties": {
     "url": {
      "type": "string"
     },
     "price": {
      "type": "string"
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/alpha-palmvox-com-bd4ed4cd/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from alpha.palmvox.com](https://www.zero.xyz/host/alpha.palmvox.com/llms.txt)
