# Apollo Web3 Hackathon Aggregator

> Apollo Web3 Hackathon Aggregator is a paid API for AI agents from apolloai.team, paid per call via x402, $0.05/call, status down (last checked 2026-09-15).

Returns a curated, regularly refreshed list of active Web3/blockchain hackathons with open registration, filterable by chain

## Facts

- Endpoint: GET https://apolloai.team/api/web3-hackathons
- Price: $0.05/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/apollo-web3-hackathon-aggregator-ebeb418a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_EBaCT6phR02r6_1XcvXwt

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 apollo-web3-hackathon-aggregator-ebeb418a
```

Example prompt: What Ethereum hackathons are currently open for registration? Pull the latest list from Apollo's Web3 hackathon feed and filter by the Ethereum chain.

## When to prefer this

Use this endpoint when an AI agent needs to discover currently open Web3/blockchain hackathons across major chains. Prefer this over general web search when you need structured, deduplicated, machine-readable hackathon data with registration status confirmed. Especially useful for developer agents looking to participate in or track upcoming crypto competitions without scraping multiple platforms like ETHGlobal or Colosseum manually.

## Known failure modes

- Invalid chain filter value returns an error or empty results
- No hackathons currently open for registration returns an empty hackathons array
- Service temporarily unavailable during data refresh cycle
- Payment failure (402) if USDC payment not properly submitted
- Stale data if last_scan is older than expected 4h refresh window

## How this service works

Web3/blockchain hackathon aggregator — only relevant events with open registration. Refreshed every 4h.

## Output

A JSON object containing a list of hackathons with open registration, each including name, blockchain chain, registration deadline, prize pool amount, platform (e.g. ETHGlobal, Colosseum), and a direct link. Also includes metadata: total count, data sources, and last scan timestamp. Data is refreshed every 4 hours.

## 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",
     "required": [],
     "properties": {
      "chain": {
       "type": "string",
       "description": "Filter by chain: all, ethereum, solana, base, polygon"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "sources": [
   "ethglobal",
   "solana",
   "base",
   "ethereum",
   "polygon"
  ],
  "last_scan": "2026-02-07T12:00:00Z",
  "hackathons": [
   {
    "link": "https://ethglobal.com/events/bangkok",
    "name": "ETHGlobal Bangkok",
    "chain": "Ethereum",
    "deadline": "2026-03-15",
    "platform": "ETHGlobal",
    "prize_pool": "$500,000",
    "registration_open": true
   },
   {
    "name": "Solana AI Hackathon",
    "chain": "Solana",
    "deadline": "2026-02-28",
    "platform": "Colosseum",
    "prize_pool": "$100,000",
    "registration_open": true
   }
  ],
  "total_hackathons": 25
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/apollo-web3-hackathon-aggregator-ebeb418a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from apolloai.team](https://www.zero.xyz/host/apolloai.team/llms.txt)
