Endpoint Playground
Test Crawlora's Product Hunt product API with realistic prefilled filters. Generate a cURL request, inspect stored structured JSON records, and open the full docs or pricing page when you are ready to integrate dataset search. Dataset Playground requests query indexed data and do not apply proxy routing.
curl "https://api.crawlora.net/api/v1/datasets/producthunt-products/items/<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slug (path) | string | Yes | Product Hunt product slug, e.g. chatgpt |
{
"code": 200,
"msg": "OK",
"data": {
"product_id": "94418",
"slug": "streaks",
"name": "Streaks",
"tagline": "The to-do list that helps you form good habits.",
"topics": [
{
"slug": "ios",
"name": "iOS"
}
],
"topic_slugs": [
"ios",
"task-management",
"tech"
],
"latest_score": 414,
"best_daily_rank": 1,
"won_daily": true,
"first_launch_date": "2015-06-01",
"launch_count": 1,
"launches": [
{
"date": "2015-06-01",
"daily_rank": 1,
"score": 414,
"post_id": "22928"
}
]
}
}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 one product by its Product Hunt slug from dataset id enum value `producthunt-products`, including its full launch history and (once hydrated) description, website, pricing and makers. Returns 404 when the slug is not in the archive. Dataset endpoints are built for repeatable structured search, facets, geo queries, pagination, and item lookup over indexed records. They do not trigger live scraping or proxy routing.
{
"code": 200,
"msg": "OK",
"data": {
"product_id": "94418",
"slug": "streaks",
"name": "Streaks",
"tagline": "The to-do list that helps you form good habits.",
"topics": [
{
"slug": "ios",
"name": "iOS"
}
],
"topic_slugs": [
"ios",
"task-management",
"tech"
],
"latest_score": 414,
"best_daily_rank": 1,
"won_daily": true,
"first_launch_date": "2015-06-01",
"launch_count": 1,
"launches": [
{
"date": "2015-06-01",
"daily_rank": 1,
"score": 414,
"post_id": "22928"
}
]
}
}curl "https://api.crawlora.net/api/v1/datasets/producthunt-products/items/<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"