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

Search for products, users, or launches on Product Hunt API Playground

Performs a full-text Product Hunt search and returns matching products, users, or launches.

GETapiKey3 credits/requestproducthunt.searchResponseDocProductHunt

Endpoint

Choose one catalog endpoint for this request.

11 shown
GETapiKey3 credits/requestproducthunt.searchResponseDocProductHunt
GET /producthunt/search

Search for products, users, or launches on Product Hunt

Performs a full-text Product Hunt search and returns matching products, users, or launches.

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

Required query 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": {
    "edges": [
      {
        "node": {
          "id": "1050265",
          "name": "HeroUI Chat",
          "tagline": "Build and ship beautiful UIs with AI and HeroUI",
          "slug": "heroui-chat",
          "reviewsRating": 4.8,
          "reviewsCount": 5
        }
      }
    ],
    "pageInfo": {
      "page": 1,
      "hasPreviousPage": false,
      "hasNextPage": true
    },
    "pagesCount": 394
  }
}

Endpoint details

Performs a full-text Product Hunt search and returns matching products, users, or launches.

Method
GET
Path
/producthunt/search
Authentication
apiKey
Credit cost
3 credits/request
Platform
ProductHunt
Parameters
6 documented fields

Request parameters

query:querytype:querypage:queryfeatured:querytopics:queryx-api-key:header

Response schema fields

codedatadata.aggregationsdata.aggregations.topicsdata.aggregations.topics[].countdata.aggregations.topics[].topicdata.aggregations.topics[].topic.iddata.aggregations.topics[].topic.namedata.edgesdata.edges[].nodedata.pageInfodata.pageInfo.hasNextPage

Sample response summary

{
  "code": 200,
  "msg": "OK",
  "data": {
    "edges": [
      {
        "node": {
          "id": "1050265",
          "name": "HeroUI Chat",
          "tagline": "Build and ship beautiful UIs with AI and HeroUI",
          "slug": "heroui-chat",
          "reviewsRating": 4.8,
          "reviewsCount": 5
        }
      }
    ],
    "pageInfo": {
      "page": 1,
      "hasPreviousPage": false,
      "hasNextPage": true
    },
    "pagesCount": 394
  }
}

cURL example

curl "https://api.crawlora.net/api/v1/producthunt/search?query=<query>" \
  -H "x-api-key: <api-key>"