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 category products API Playground

Returns the paginated category listing payload for a Product Hunt category slug.

GETapiKey2 credits/requestproducthunt.categoryProductsResponseDocProductHunt

Endpoint

Choose one catalog endpoint for this request.

11 shown
GETapiKey2 credits/requestproducthunt.categoryProductsResponseDocProductHunt
GET /producthunt/category/{slug}/products

Retrieve Product Hunt category products

Returns the paginated category listing payload for a Product Hunt category slug.

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

Path parameters

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": {
    "id": "1585",
    "slug": "vibe-coding",
    "path": "/categories/vibe-coding",
    "name": "Vibe Coding Tools",
    "featured_only": true,
    "order": "highest_rated",
    "page": 1,
    "page_size": 15,
    "ai_summary": "In this set, the strongest split is between code-first assistants, full-stack app generators, and design-led prototyping...",
    "category_tags": [
      {
        "name": "artificial intelligence",
        "count": 60
      }
    ],
    "total_count": 79,
    "end_cursor": "MTU",
    "has_previous_page": false,
    "has_next_page": true,
    "items": [
      {
        "id": "597151",
        "slug": "cursor",
        "name": "Cursor",
        "tagline": "The AI Code Editor",
        "reviews_rating": 4.96,
        "reviews_count": 826,
        "followers_count": 40383,
        "latest_launch": {
          "id": "1102589",
          "scheduled_at": "2026-03-20T00:01:00-07:00"
        },
        "categories": [
          {
            "id": "75",
            "name": "Code editors",
            "path": "/categories/code-editors",
            "slug": "code-editors"
          }
        ]
      }
    ]
  }
}

Endpoint details

Returns the paginated category listing payload for a Product Hunt category slug.

Method
GET
Path
/producthunt/category/{slug}/products
Authentication
apiKey
Credit cost
2 credits/request
Platform
ProductHunt
Parameters
7 documented fields

Request parameters

slug:pathfeatured_only:queryorder:querypage:querypage_size:querytags:queryx-api-key:header

Response schema fields

codedatadata.ai_summarydata.category_tagsdata.category_tags[].countdata.category_tags[].namedata.connectiondata.descriptiondata.end_cursordata.featured_onlydata.has_next_pagedata.has_previous_page

Sample response summary

{
  "code": 200,
  "msg": "OK",
  "data": {
    "id": "1585",
    "slug": "vibe-coding",
    "path": "/categories/vibe-coding",
    "name": "Vibe Coding Tools",
    "featured_only": true,
    "order": "highest_rated",
    "page": 1,
    "page_size": 15,
    "ai_summary": "In this set, the strongest split is between code-first assistants, full-stack app generators, and design-led prototyping...",
    "category_tags": [
      {
        "name": "artificial intelligence",
        "count": 60
      }
    ],
    "total_count": 79,
    "end_cursor": "MTU",
    "has_previous_page": false,
    "has_next_page": true,
    "items": [
      {
        "id": "597151",
        "slug": "cursor",
        "name": "Cursor",
        "tagline": "The AI Code Editor",
        "reviews_rating": 4.96,
        "reviews_count": 826,
        "followers_count": 40383,
        "latest_launch": {
          "id": "1102589",
          "scheduled_at": "2026-03-20T00:01:00-07:00"
        },
        "categories": [
          {
            "id": "75",
            "name": "Code editors",
            "path": "/categories/code-editors",
            "slug": "code-editors"
          }
        ]
      }
    ]
  }
}

cURL example

curl "https://api.crawlora.net/api/v1/producthunt/category/<slug>/products" \
  -H "x-api-key: <api-key>"