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 leaderboard API Playground
Fetches Product Hunt leaderboard data for daily, weekly, monthly, or yearly scopes via Product Hunt GraphQL.
GETapiKey2 credits/requestproducthunt.leaderboardResponseDocProductHunt
Endpoint details
Fetches Product Hunt leaderboard data for daily, weekly, monthly, or yearly scopes via Product Hunt GraphQL.
- Method
- GET
- Path
- /producthunt/leaderboard
- Authentication
- apiKey
- Credit cost
- 2 credits/request
- Platform
- ProductHunt
- Parameters
- 9 documented fields
Request parameters
scope:querydate:queryyear:querymonth:queryday:queryweek:queryfeatured:queryorder:querycursor:query
Response schema fields
codedatadata.connectiondata.daydata.end_cursordata.featureddata.golden_kitty_yearsdata.has_next_pagedata.itemsdata.items[].addata.items[].ad.channel_kinddata.items[].ad.id
Sample response summary
{
"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 example
curl "https://api.crawlora.net/api/v1/producthunt/leaderboard" \
-H "x-api-key: <api-key>"