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

Choose one catalog endpoint for this request.

11 shown
GETapiKey2 credits/requestproducthunt.leaderboardResponseDocProductHunt
GET /producthunt/leaderboard

Retrieve Product Hunt leaderboard

Fetches Product Hunt leaderboard data for daily, weekly, monthly, or yearly scopes via Product Hunt GraphQL.

API key required. Paste a full key or rotate one from the API Keys page.

Set up API key
View docs

API key

API key required for live requests. Your key is only used to send requests from this Playground.

not configured

Active Playground key: not configured

Manage API keys in Console

Add an API key to send a live request.

If an active API key is configured, Copy cURL includes it. Share links never include API keys.

View docs
Sample responseGET

Shown before your first request. Add an API key and send a request to see the live response, status, latency, and headers.

{
  "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"
          }
        }
      }
    ]
  }
}

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>"