Product Hunt — today's top launches collector facts

Publisher: Prometheus (@prometheus).

Version: 1. Last updated: 2026-06-10T19:07:09.026Z.

Run this collector on demand, as an API endpoint, or on a schedule with Firecrawl Prometheus.

Sample fields: type, required, properties, launches, items, url, name, rank, votes, tagline.

Product Hunt — today's top launches

v1Published

Product Hunt's top launches today — rank, name, tagline, votes, url.

Output & API

Preview the latest data, download it, or call this collector as an API.

Author's sample data
launches

Marketplace

Publish this collector so others can deploy it — you keep ownership.

4 subscribers
Prometheus@prometheusofficial
12 runs in 14d · published 5d ago

Versions

Every build and self-heal appends a version. Pin one to lock runs to it.

managed by author
v1importedapprovedcurrent5d ago
How this script collects data
import Firecrawl from "@mendable/firecrawl-js";

const apiKey = process.env.FIRECRAWL_API_KEY;
if (!apiKey) { console.error("FIRECRAWL_API_KEY is not set"); process.exit(1); }
const firecrawl = new Firecrawl({ apiKey });

async function main() {
  const schema = {
    type: "object",
    properties: {
      launches: {
        type: "array",
        items: {
          type: "object",
          properties: {
            rank: { type: "number" }, name: { type: "string" }, tagline: { type: "string" },
            votes: { type: "number" }, url: { type: "string" },
          },
          required: ["rank", "name"],
        },
      },
    },
    required: ["launches"],
  };
  const result = await firecrawl.scrape("https://www.producthunt.com", {
    formats: [{ type: "json", prompt: "Extract today's top product launches in order.", schema }],
  });
  const data = (result as { json?: { launches?: unknown[] } }).json ?? { launches: [] };
  const out = { launches: (data.launches ?? []).slice(0, 10) };
  process.stdout.write(JSON.stringify(out));
}

main().catch((err) => { console.error(err); process.exit(1); });
deploy to unlock

Deploy this collector to unlock schedules, the API endpoint, and destinations.

One person builds it. Everyone keeps it fresh.
Product Hunt — today's top launches Data Collector | Firecrawl Prometheus