# Apollo Product Hunt Daily Launches Feed

> Apollo Product Hunt Daily Launches 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 today's Product Hunt launches with AI categorization, filterable by category, updated every 4 hours

## Facts

- Endpoint: GET https://apolloai.team/api/producthunt
- 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-product-hunt-daily-launches-feed-46adc7a8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vvHRzZFCDDEyAPtBCCSCM

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-product-hunt-daily-launches-feed-46adc7a8
```

Example prompt: Show me today's top 20 Product Hunt launches in the AI category — I want to see what new AI tools just dropped.

## When to prefer this

Use this endpoint when you need a regularly refreshed, AI-categorized snapshot of today's Product Hunt launches without scraping Product Hunt directly. Ideal for builder agents monitoring new product releases, competitive intelligence, or identifying trends in AI/devtools/SaaS. Prefer this over raw web scraping when you need structured, pre-categorized data with highlights already surfaced.

## Known failure modes

- Invalid category value returns empty or error response
- Limit outside 1-50 range may be clamped or rejected
- Data may be up to 4 hours stale since last refresh
- Payment failure via x402 protocol returns 402 with payment instructions
- No launches available if Product Hunt hasn't published yet for the day

## How this service works

Product Hunt daily launches — newest products with AI categorization. Filter by category. Updated every 4h.

## Output

A JSON object containing an array of launches (each with URL, title, publish date, categories, and description), a highlights array of notable picks, total launch count, update frequency, and a category breakdown showing counts per category (ai, general, devtools, etc.)

## 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": {
      "limit": {
       "type": "string",
       "description": "Max launches (1-50, default 30)"
      },
      "category": {
       "type": "string",
       "description": "Filter by category: all, ai, devtools, web3, saas, design, productivity"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "launches": [
   {
    "url": "https://producthunt.com/...",
    "title": "ProductName",
    "published": "2026-02-08",
    "categories": [
     "ai"
    ],
    "description": "..."
   }
  ],
  "highlights": [
   {
    "title": "AI Code Editor",
    "published": "2026-02-08",
    "categories": [
     "ai",
     "devtools"
    ],
    "description": "Multiplayer AI-powered coding..."
   }
  ],
  "total_launches": 50,
  "update_frequency": "Every 4 hours",
  "category_breakdown": {
   "ai": 22,
   "general": 16,
   "devtools": 9
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/apollo-product-hunt-daily-launches-feed-46adc7a8/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)
