Endpoint Playground
Test Crawlora's Retrieve Product Hunt leaderboard 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/leaderboard?scope=daily&date=2026-01-29&year=2026&month=1&day=29&week=5" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| scope | string | No | daily | Leaderboard scope: daily, weekly, monthly, yearly |
| date | string | No | 2026-01-29 | Anchor date in YYYY-MM-DD format. Used to derive missing year/month/day/week values. |
| year | integer | No | 2026 | Leaderboard year override |
| month | integer | No | 1 | Daily/monthly month override |
| day | integer | No | 29 | Daily day override |
| week | integer | No | 5 | Weekly ISO week override |
| featured | boolean | No | Featured products only | |
| order | string | No | Ranking order override. Defaults to scope rank enum. | |
| cursor | string | No | Pagination cursor |
{
"code": 200,
"msg": "OK",
"data": {
"scope": "daily",
"featured": true,
"order": "DAILY_RANK",
"year": 2026,
"month": 4,
"day": 27,
"week": 18,
"connection": "homefeedItems",
"has_next_page": false,
"items": [
{
"type": "post",
"post": {
"id": "1101061",
"name": "Kitty Points Leaderboard",
"slug": "kitty-points-leaderboard",
"tagline": "Find interesting community members and see how you stack up",
"latest_score": 140,
"daily_rank": 3,
"weekly_rank": 9,
"comments_count": 18,
"product": {
"id": "112572",
"slug": "producthunt",
"name": "Product Hunt"
}
}
}
]
}
}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.
Fetches Product Hunt leaderboard data for daily, weekly, monthly, or yearly scopes via Product Hunt GraphQL.
{
"code": 200,
"msg": "OK",
"data": {
"scope": "daily",
"featured": true,
"order": "DAILY_RANK",
"year": 2026,
"month": 4,
"day": 27,
"week": 18,
"connection": "homefeedItems",
"has_next_page": false,
"items": [
{
"type": "post",
"post": {
"id": "1101061",
"name": "Kitty Points Leaderboard",
"slug": "kitty-points-leaderboard",
"tagline": "Find interesting community members and see how you stack up",
"latest_score": 140,
"daily_rank": 3,
"weekly_rank": 9,
"comments_count": 18,
"product": {
"id": "112572",
"slug": "producthunt",
"name": "Product Hunt"
}
}
}
]
}
}curl "https://api.crawlora.net/api/v1/producthunt/leaderboard" \
-H "x-api-key: $CRAWLORA_API_KEY"