# Apollo Agent Intel — AI Agent Opportunity Feed

> Apollo Agent Intel — AI Agent Opportunity Feed 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 feed of AI agent opportunities including bounties, DeFi, x402, and platform listings refreshed on a regular cadence

## Facts

- Endpoint: GET https://apolloai.team/api/agent-intel
- 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-agent-intel-ai-agent-opportunity-feed-73248ae7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UlKpNBVWoMT6-TApFNwDG

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-agent-intel-ai-agent-opportunity-feed-73248ae7
```

Example prompt: Pull the latest Apollo agent intel feed filtered to x402 opportunities and show me the top high-priority ones I could start working on today.

## When to prefer this

Use this endpoint when an AI agent or developer needs a structured, regularly-refreshed list of actionable opportunities in the agentic/web3/x402 ecosystem — especially when filtering by category (bounties, DeFi, x402, platforms). Prefer over manual web scraping or general search when you need machine-readable, pre-curated intelligence with priority rankings and next steps.

## Known failure modes

- Category enum value not recognized — returns 400 or empty results
- Free tier exhausted (5 req/day) — returns 402 Payment Required until paid via x402 or API key
- Feed data stale if refresh cycle hasn't run recently
- No opportunities in selected category — returns empty arrays
- Invalid or missing API key / x402 payment — returns 401/402

## How this service works

Apollo Intelligence Network: 54 API endpoints for AI agents — data feeds, proxy, OSINT, DeFi, crypto, Etherscan, weather, ML/NLP. Free trial: 5 requests/day. Pay-per-request via x402 or API key.

## Output

A JSON object containing a last_scan timestamp, categorized opportunity lists (x402, bounties, platforms, hackathons), a top_opportunities array with name, type, value, priority, deadline, and actionable_next_step fields, plus a total_opportunities count.

## 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": {
      "category": {
       "enum": [
        "all",
        "bounties",
        "platforms",
        "x402",
        "defi"
       ],
       "type": "string",
       "description": "Filter: all, bounties, platforms, x402, defi"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "last_scan": "2026-02-08T00:40",
  "categories": {
   "x402": [],
   "bounties": [],
   "platforms": [],
   "hackathons": []
  },
  "top_opportunities": [
   {
    "link": "https://sei.io",
    "name": "x402 Integration on Sei Network",
    "type": "infrastructure",
    "value": "$10K+",
    "priority": "HIGH",
    "actionable_next_step": "Build x402 wrapper"
   },
   {
    "name": "Circle USDC Hackathon",
    "type": "hackathon/bounty",
    "value": "$50,000 prize pool",
    "deadline": "2026-03-15",
    "priority": "HIGH"
   }
  ],
  "total_opportunities": 61
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/apollo-agent-intel-ai-agent-opportunity-feed-73248ae7/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)
