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