# Apollo Opportunity Pack Bundle

> Apollo Opportunity Pack Bundle is a paid API for AI agents from apolloai.team, paid per call via x402, $0.15/call, status down (last checked 2026-09-15).

Returns a bundled intelligence pack combining keyword opportunities, pain points, and micro-SaaS ideas at a 50% discount versus purchasing each component individually.

## Facts

- Endpoint: GET https://apolloai.team/api/bundle/opportunity-pack
- Price: $0.15/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/apollo-opportunity-pack-bundle-37950063
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_EvfzcN4cixWeFCNX3p-Co

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-opportunity-pack-bundle-37950063
```

Example prompt: Pull the Apollo opportunity pack for the seed keyword 'agent tools' — I want the keyword opportunities, pain point clusters, and micro-SaaS ideas all in one shot at the bundled price.

## When to prefer this

Prefer this endpoint when you need all three intelligence components (keywords, pain points, micro-SaaS ideas) together and want to minimize cost — it is 50% cheaper than calling the three individual endpoints separately. Ideal for product ideation sessions, market research sweeps, or when an agent needs a comprehensive opportunity snapshot in a single call.

## Known failure modes

- Invalid or missing HTTP method — only GET/HEAD/DELETE accepted
- Seed keyword parameter malformed — returns 400 with schema validation error
- Payment of 0.15 USDC not received — returns 402 Payment Required
- Rate limit exceeded — returns 429 with retry-after header
- Upstream data feed unavailable — returns 503 with partial or empty component arrays

## How this service works

Opportunity Pack bundle: keywords + pain points + micro-SaaS ideas. 50% discount vs individual.

## Output

Returns a JSON object with three components: keyword_opportunities (list of keywords with opportunity ratings and total count), pain_points (total count and top NLP cluster), and micro_saas (list of buildable ideas with estimated monthly value and total count), plus a savings_vs_individual field confirming the 50% bundle discount.

## 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": {
      "seed": {
       "type": "string",
       "description": "Seed keyword for keyword expansion (optional)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "bundle": "opportunity-pack",
  "components": [
   "keyword-opps",
   "pain-points",
   "micro-saas"
  ],
  "micro_saas": {
   "top": [
    {
     "name": "Agent Memory API",
     "value": "$500/mo"
    }
   ],
   "total": 15
  },
  "pain_points": {
   "total": 42,
   "top_cluster": "API Integration Friction"
  },
  "keyword_opportunities": {
   "top": [
    {
     "keyword": "agent tools",
     "opportunity": "HIGH"
    }
   ],
   "total": 12
  },
  "savings_vs_individual": "50%"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/apollo-opportunity-pack-bundle-37950063/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)
