# SixPath Active Airdrops

> SixPath Active Airdrops is a paid API for AI agents from sixpath.vercel.app, paid per call via x402, $0.148561/call, status unknown (last checked 2026-09-14).

Retrieves a list of currently active cryptocurrency airdrops from a curated source

## Facts

- Endpoint: POST https://sixpath.vercel.app/api/active-airdrops
- Price: $0.148561/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sixpath-active-airdrops-6bc5fe7a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_EZCbhsamH51bZo2BKglB0

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 sixpath-active-airdrops-6bc5fe7a -d '<json body>'
```

Example prompt: What crypto airdrops are currently active? Show me up to 10 results.

## When to prefer this

Use this endpoint when you need a quick, pay-per-call lookup of currently active crypto airdrop opportunities without maintaining your own airdrop tracking infrastructure. Best for agents that need on-demand airdrop discovery without subscription overhead.

## Known failure modes

- No active airdrops found returns empty array
- Invalid limit parameter type returns validation error
- Payment not fulfilled returns 402 status
- Upstream airdrop data source unavailable returns error or stale data
- Exceeding allowed limit value may return error or be capped

## How this service works

All-in-one API hub: Social Media, Jobs, Finance, Crypto, and Tools. Pay-per-call with x402 protocol on Base chain.

## Output

Returns a JSON object with a source field identifying the data provider and an airdrops array containing details about each currently active airdrop opportunity, such as project name, eligibility criteria, and claim information.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "integer",
   "description": "Max results"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "source": {
   "type": "string"
  },
  "airdrops": {
   "type": "array",
   "items": {
    "type": "object"
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sixpath-active-airdrops-6bc5fe7a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from sixpath.vercel.app](https://www.zero.xyz/host/sixpath.vercel.app/llms.txt)
