Endpoint Playground
Test Crawlora's Product Hunt Launches 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/product/%22openai%22/launches?order=DATE" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | "openai" | Product Hunt slug |
| cursor | string | No | Pagination cursor | |
| order | string | No | DATE | Product Hunt launch order |
{
"code": 200,
"msg": "OK",
"data": {
"product_id": "594550",
"slug": "openai",
"name": "OpenAI",
"order": "DATE",
"connection": "posts",
"total_count": 2,
"end_cursor": "cursor-1",
"has_next_page": true,
"items": [
{
"id": "1087490",
"slug": "openai-o3",
"name": "OpenAI o3",
"tagline": "A reasoning model",
"daily_rank": 1,
"comments_count": 12
}
]
}
}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 paginated launch posts for a Product Hunt product using Product Hunt's ProductPageLaunches GraphQL operation.
{
"code": 200,
"msg": "OK",
"data": {
"product_id": "594550",
"slug": "openai",
"name": "OpenAI",
"order": "DATE",
"connection": "posts",
"total_count": 2,
"end_cursor": "cursor-1",
"has_next_page": true,
"items": [
{
"id": "1087490",
"slug": "openai-o3",
"name": "OpenAI o3",
"tagline": "A reasoning model",
"daily_rank": 1,
"comments_count": 12
}
]
}
}curl "https://api.crawlora.net/api/v1/producthunt/product/<id>/launches" \
-H "x-api-key: $CRAWLORA_API_KEY"