Endpoint Playground
Test Crawlora's Product Hunt maker search API with realistic prefilled filters. Generate a cURL request, inspect stored structured JSON records, and open the full docs or pricing page when you are ready to integrate dataset search. Dataset Playground requests query indexed data and do not apply proxy routing.
curl "https://api.crawlora.net/api/v1/datasets/producthunt-makers/search" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | No | Full-text query over maker name and headline, max 256 characters | |
| topic | string | No | Exact topic-slug the maker builds in, e.g. artificial-intelligence, max 128 characters | |
| min_products | integer | No | Minimum number of products made, 0 or greater | |
| min_total_votes | integer | No | Minimum total upvotes across the maker's products, 0 or greater | |
| sort | string | No | Sort enum: total_votes_desc, product_count_desc, followers_desc, relevance | |
| page | integer | No | Page number, defaults to 1 | |
| page_size | integer | No | Page size, defaults to 20 and maxes at 100; page * page_size must be <= 10000 |
{
"code": 200,
"msg": "OK",
"data": {
"dataset": "producthunt-makers",
"items": [
{
"maker_id": "12345",
"username": "rrhoover",
"name": "Ryan Hoover",
"headline": "Founder of Product Hunt",
"product_count": 8,
"total_votes": 5210,
"best_product": {
"slug": "product-hunt",
"latest_score": 1200
},
"topics": [
"tech",
"productivity"
]
}
],
"page": 1,
"page_size": 20,
"total": 1,
"sort": "total_votes_desc"
}
}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.
Searches Product Hunt makers from the dataset id enum value `producthunt-makers` — public-profile records of the people who made products, with their footprint (products made, total upvotes, topics) for maker leaderboards. Public fields only. Sort enum: `total_votes_desc`, `product_count_desc`, `followers_desc`, `relevance`. Dataset endpoints are built for repeatable structured search, facets, geo queries, pagination, and item lookup over indexed records. They do not trigger live scraping or proxy routing.
{
"code": 200,
"msg": "OK",
"data": {
"dataset": "producthunt-makers",
"items": [
{
"maker_id": "12345",
"username": "rrhoover",
"name": "Ryan Hoover",
"headline": "Founder of Product Hunt",
"product_count": 8,
"total_votes": 5210,
"best_product": {
"slug": "product-hunt",
"latest_score": 1200
},
"topics": [
"tech",
"productivity"
]
}
],
"page": 1,
"page_size": 20,
"total": 1,
"sort": "total_votes_desc"
}
}curl "https://api.crawlora.net/api/v1/datasets/producthunt-makers/search" \
-H "x-api-key: $CRAWLORA_API_KEY"