Endpoint Playground
Test Crawlora's Product Hunt About Page 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/%22producthunt%22/about" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | "producthunt" | Product Hunt slug |
{
"code": 200,
"msg": "OK",
"data": {
"product_id": "112572",
"page_variant_typename": "ProductPageVariantHighlightedLaunch",
"product": {
"id": "112572",
"slug": "producthunt",
"name": "Product Hunt",
"tagline": "The place to discover your next favorite thing",
"latest_launch": {
"id": "1101061",
"slug": "kitty-points-leaderboard",
"launch_number": 120
},
"followers_count": 142009
},
"launch": {
"id": "1101061",
"name": "Kitty Points Leaderboard",
"daily_rank": 3,
"weekly_rank": 9,
"comments_count": 52
},
"viewer": {
"is_featured_post_maker": false
},
"ad": {
"id": "33851",
"name": "Littlebird",
"tagline": "The only full-context AI"
}
}
}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 richer Product Hunt about-page payload, including launch, forum, review tags, and media data.
{
"code": 200,
"msg": "OK",
"data": {
"product_id": "112572",
"page_variant_typename": "ProductPageVariantHighlightedLaunch",
"product": {
"id": "112572",
"slug": "producthunt",
"name": "Product Hunt",
"tagline": "The place to discover your next favorite thing",
"latest_launch": {
"id": "1101061",
"slug": "kitty-points-leaderboard",
"launch_number": 120
},
"followers_count": 142009
},
"launch": {
"id": "1101061",
"name": "Kitty Points Leaderboard",
"daily_rank": 3,
"weekly_rank": 9,
"comments_count": 52
},
"viewer": {
"is_featured_post_maker": false
},
"ad": {
"id": "33851",
"name": "Littlebird",
"tagline": "The only full-context AI"
}
}
}curl "https://api.crawlora.net/api/v1/producthunt/product/<id>/about" \
-H "x-api-key: $CRAWLORA_API_KEY"