Endpoint Playground
Test Crawlora's Product Hunt Search API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/producthunt/search?query=ai+agent&type=product&page=1&topics=ai-chatbots%2Cchrome-extensions" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| query | string | Yes | ai agent | Search keywords |
| type | string | No | product | Result type: **product** (default), **user**, or **launch** |
| page | integer | No | 1 | Page number (1-based) |
| featured | boolean | No | Launch search only: featured launches only | |
| topics | string | No | ai-chatbots,chrome-extensions | Launch search only: comma-separated topic slugs |
{
"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
}
}Public Playground
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.
Performs a full-text Product Hunt search and returns matching products, users, or launches.
{
"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 "https://api.crawlora.net/api/v1/producthunt/search?query=<query>" \
-H "x-api-key: $CRAWLORA_API_KEY"