ProductHunt API endpoint
Retrieve Product Hunt category products
Returns the paginated category listing payload for a Product Hunt category slug.
GETapiKey2 credits/requestproducthunt.categoryProductsResponseDoc
/producthunt/category/{slug}/productsParameters
| Name | In | Type | Required | Enum | Example | Description |
|---|---|---|---|---|---|---|
| slug | path | string | Yes | "vibe-coding" | Product Hunt category slug | |
| featured_only | query | boolean | No | Featured products only | ||
| order | query | string | No | Sort order | ||
| page | query | integer | No | Page number (1-based) | ||
| page_size | query | integer | No | Page size | ||
| tags | query | string | No | Comma-separated category tags | ||
| x-api-key | header | string | Yes | API key required |
Authentication
Send your scraping API key in the x-api-key header. Use the console API Keys page to rotate or select the active key.
Billing
Endpoint usage is metered in credits. The plan prices, included credits, limits, and overage rates below match the active backend billing configuration.
- Credit cost
- 2 credits/request
- Charged response
- Successful 2xx responses
| Plan | Price | Included credits | Daily cap | Rate limit | Overage |
|---|---|---|---|---|---|
| Free | $0/mo | 2,000 | 500 daily credits | 5/min | No overage |
| Starter | $9/mo | 20,000 | 5,000 daily credits | 15/min | $0.75/1,000 overage credits when enabled |
| Growth | $29/mo | 100,000 | 25,000 daily credits | 45/min | $0.45/1,000 overage credits when enabled |
| Pro | $79/mo | 400,000 | No daily cap | 120/min | $0.30/1,000 overage credits |
| Business | $199/mo | 1,200,000 | No daily cap | 300/min | $0.20/1,000 overage credits |
| Enterprise | $499/mo | 5,000,000 | No daily cap | 1,000/min | $0.12/1,000 overage credits |
Failure responses
| Status | Description | Schema |
|---|---|---|
| 400 | Missing or invalid parameters | #/definitions/app.Response |
| 404 | Category not found | #/definitions/app.Response |
| 429 | Rate limit exceeded | #/definitions/app.Response |
| 500 | Internal server error | #/definitions/app.Response |
Example response
{
"code": 200,
"msg": "OK",
"data": {
"id": "1585",
"slug": "vibe-coding",
"path": "/categories/vibe-coding",
"name": "Vibe Coding Tools",
"featured_only": true,
"order": "highest_rated",
"page": 1,
"page_size": 15,
"ai_summary": "In this set, the strongest split is between code-first assistants, full-stack app generators, and design-led prototyping...",
"category_tags": [
{
"name": "artificial intelligence",
"count": 60
}
],
"total_count": 79,
"end_cursor": "MTU",
"has_previous_page": false,
"has_next_page": true,
"items": [
{
"id": "597151",
"slug": "cursor",
"name": "Cursor",
"tagline": "The AI Code Editor",
"reviews_rating": 4.96,
"reviews_count": 826,
"followers_count": 40383,
"latest_launch": {
"id": "1102589",
"scheduled_at": "2026-03-20T00:01:00-07:00"
},
"categories": [
{
"id": "75",
"name": "Code editors",
"path": "/categories/code-editors",
"slug": "code-editors"
}
]
}
]
}
}Request schema
No body schema
Response schema
#/definitions/producthunt.categoryProductsResponseDoc
| Field | Type | Required | Enum | Bounds | Example | Description |
|---|---|---|---|---|---|---|
| code | integer | No | 200 | |||
| data | producthunt.ProductCategoryProductsPage | No | ||||
| data.ai_summary | string | No | ||||
| data.category_tags | array | No | ||||
| data.category_tags[].count | integer | No | ||||
| data.category_tags[].name | string | No | ||||
| data.connection | string | No | products | |||
| data.description | string | No | ||||
| data.end_cursor | string | No | ||||
| data.featured_only | boolean | No | ||||
| data.has_next_page | boolean | No | ||||
| data.has_previous_page | boolean | No | ||||
| data.id | string | No | ||||
| data.items | array | No | ||||
| data.items[].badges | array | No | ||||
| data.items[].badges[].category | string | No | ||||
| data.items[].badges[].date | string | No | ||||
| data.items[].badges[].id | string | No | ||||
| data.items[].badges[].period | string | No | ||||
| data.items[].badges[].position | integer | No | ||||
| data.items[].badges[].post_id | string | No | ||||
| data.items[].badges[].post_name | string | No | ||||
| data.items[].badges[].post_slug | string | No | ||||
| data.items[].badges[].year | string | No | ||||
| data.items[].categories | array | No | ||||
| data.items[].categories[].id | string | No | ||||
| data.items[].categories[].name | string | No | ||||
| data.items[].categories[].path | string | No | ||||
| data.items[].categories[].slug | string | No | ||||
| data.items[].detailed_reviews_count | integer | No | ||||
| data.items[].followers_count | integer | No | ||||
| data.items[].founder_reviews_count | integer | No | ||||
| data.items[].founder_shoutouts | array | No | ||||
| data.items[].founder_shoutouts[].from_post | producthunt.ProductCategoryFounderPost | No | ||||
| data.items[].founder_shoutouts[].from_post.badges | array | No | ||||
| data.items[].founder_shoutouts[].from_post.badges[].category | string | No | ||||
| data.items[].founder_shoutouts[].from_post.badges[].date | string | No | ||||
| data.items[].founder_shoutouts[].from_post.badges[].id | string | No | ||||
| data.items[].founder_shoutouts[].from_post.badges[].period | string | No | ||||
| data.items[].founder_shoutouts[].from_post.badges[].position | integer | No | ||||
| data.items[].founder_shoutouts[].from_post.badges[].post_id | string | No | ||||
| data.items[].founder_shoutouts[].from_post.badges[].post_name | string | No | ||||
| data.items[].founder_shoutouts[].from_post.badges[].post_slug | string | No | ||||
| data.items[].founder_shoutouts[].from_post.badges[].year | string | No | ||||
| data.items[].founder_shoutouts[].from_post.id | string | No | ||||
| data.items[].founder_shoutouts[].from_post.name | string | No | ||||
| data.items[].founder_shoutouts[].from_post.product_id | string | No | ||||
| data.items[].founder_shoutouts[].from_post.product_slug | string | No | ||||
| data.items[].founder_shoutouts[].from_post.product_state | string | No | ||||
| data.items[].founder_shoutouts[].from_post.slug | string | No | ||||
| data.items[].founder_shoutouts[].from_post.thumbnail_image_uuid | string | No | ||||
| data.items[].founder_shoutouts[].id | string | No | ||||
| data.items[].founder_shoutouts[].product_id | string | No | ||||
| data.items[].id | string | No | ||||
| data.items[].is_no_longer_online | boolean | No | ||||
| data.items[].is_subscribed | boolean | No | ||||
| data.items[].is_top_product | boolean | No | ||||
| data.items[].latest_launch | producthunt.ProductCategoryLatestLaunch | No | ||||
| data.items[].latest_launch.id | string | No | ||||
| data.items[].latest_launch.scheduled_at | string | No | ||||
| data.items[].logo_uuid | string | No | ||||
| data.items[].name | string | No | ||||
| data.items[].posts_count | integer | No | ||||
| data.items[].reviews_count | integer | No | ||||
| data.items[].reviews_rating | number | No | ||||
| data.items[].slug | string | No | ||||
| data.items[].structured_data | producthunt.ProductAlternativeStructuredData | No | ||||
| data.items[].structured_data.application_category | string | No | ||||
| data.items[].structured_data.context | string | No | ||||
| data.items[].structured_data.date_modified | string | No | ||||
| data.items[].structured_data.date_published | string | No | ||||
| data.items[].structured_data.description | string | No | ||||
| data.items[].structured_data.id | string | No | ||||
| data.items[].structured_data.image | string | No | ||||
| data.items[].structured_data.name | string | No | ||||
| data.items[].structured_data.operating_system | string | No | ||||
| data.items[].structured_data.screenshot | array | No | ||||
| data.items[].structured_data.url | string | No | ||||
| data.items[].tagline | string | No | ||||
| data.items[].tags | array | No | ||||
| data.last_updated_at | string | No | ||||
| data.name | string | No | ||||
| data.order | string | No | highest_rated | |||
| data.page | integer | No | 1 | |||
| data.page_size | integer | No | 15 | |||
| data.path | string | No | /categories/vibe-coding | |||
| data.slug | string | No | vibe-coding | |||
| data.tags | array | No | ||||
| data.total_count | integer | No | ||||
| msg | string | No | OK |
Example request
curl -X GET "https://api.crawlora.net/api/v1/producthunt/category/%22vibe-coding%22/products" -H "x-api-key: <api-key>"
TypeScript fetch
const url = new URL("https://api.crawlora.net/api/v1/producthunt/category/%22vibe-coding%22/products");
const headers = new Headers();
headers.set("x-api-key", "<api-key>");
const response = await fetch(url, {
method: "GET",
headers,
});
const payload = await response.json();