Endpoint Playground
Test Crawlora's Product Hunt maker facets 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/facets?facet=<facet>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| facet | string | Yes | Facet enum: topic, product_count_band | |
| q | string | No | Full-text query over maker name and headline, max 256 characters | |
| topic | string | No | Exact topic-slug the maker builds in, 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 |
{
"code": 200,
"msg": "OK",
"data": {
"dataset": "producthunt-makers",
"facet": "product_count_band",
"items": [
{
"value": "1",
"count": 180234
},
{
"value": "2-4",
"count": 42150
},
{
"value": "5-9",
"count": 8300
},
{
"value": "10+",
"count": 2100
}
]
}
}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.
Returns distribution counts over the Product Hunt makers dataset (dataset id enum value `producthunt-makers`), honoring the same filters as search. Facet enum: `topic`, `product_count_band`. 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",
"facet": "product_count_band",
"items": [
{
"value": "1",
"count": 180234
},
{
"value": "2-4",
"count": 42150
},
{
"value": "5-9",
"count": 8300
},
{
"value": "10+",
"count": 2100
}
]
}
}curl "https://api.crawlora.net/api/v1/datasets/producthunt-makers/facets?facet=<facet>" \
-H "x-api-key: $CRAWLORA_API_KEY"