Public Playground
Preview the endpoint before sending a live request
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.
Playground
Retrieve Product Hunt product launches API Playground
Returns paginated launch posts for a Product Hunt product using Product Hunt's ProductPageLaunches GraphQL operation.
GETapiKey2 credits/requestproducthunt.launchesResponseDocProductHunt
Endpoint details
Returns paginated launch posts for a Product Hunt product using Product Hunt's ProductPageLaunches GraphQL operation.
- Method
- GET
- Path
- /producthunt/product/{id}/launches
- Authentication
- apiKey
- Credit cost
- 2 credits/request
- Platform
- ProductHunt
- Parameters
- 4 documented fields
Request parameters
id:pathcursor:queryorder:queryx-api-key:header
Response schema fields
codedatadata.connectiondata.end_cursordata.has_next_pagedata.itemsdata.items[].badgesdata.items[].badges[].categorydata.items[].badges[].datedata.items[].badges[].iddata.items[].badges[].perioddata.items[].badges[].position
Sample response summary
{
"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 example
curl "https://api.crawlora.net/api/v1/producthunt/product/<id>/launches" \
-H "x-api-key: <api-key>"