Endpoint Playground
Test Crawlora's Product Hunt Category Products API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/producthunt/category/%22vibe-coding%22/products" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slug (path) | string | Yes | "vibe-coding" | Product Hunt category slug |
| featured_only | boolean | No | Featured products only | |
| order | string | No | Sort order | |
| page | integer | No | Page number (1-based) | |
| page_size | integer | No | Page size | |
| tags | string | No | Comma-separated category tags |
{
"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"
}
]
}
]
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns the paginated category listing payload for a Product Hunt category slug.
{
"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"
}
]
}
]
}
}curl "https://api.crawlora.net/api/v1/producthunt/category/<slug>/products" \
-H "x-api-key: $CRAWLORA_API_KEY"