Endpoint Playground
Test Crawlora's Product Hunt trends 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-trends/facets?facet=<facet>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| facet | string | Yes | Facet enum: topic, launch_year | |
| group_by | string | No | Aggregate cell dimension enum: topic_month, topic_year, topic. Defaults to topic_month | |
| topic | string | No | Exact topic-slug filter, e.g. artificial-intelligence, max 128 characters | |
| launched_after | string | No | Lower bound on first-launch date, an ISO-8601 date (YYYY-MM-DD) | |
| launched_before | string | No | Upper bound on first-launch date, an ISO-8601 date (YYYY-MM-DD) | |
| min_votes | integer | No | Minimum product upvotes, 0 or greater | |
| min_launches | integer | No | Minimum launches per bucket; raises the small-cell suppression floor |
{
"code": 200,
"msg": "OK",
"data": {
"dataset": "producthunt-trends",
"facet": "topic",
"items": [
{
"value": "artificial-intelligence",
"count": 8421
},
{
"value": "developer-tools",
"count": 6033
},
{
"value": "productivity",
"count": 5210
}
]
}
}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 suppressed distribution counts over the Product Hunt trends dataset (dataset id enum value `producthunt-trends`), honoring the same filters as search. Facet enum: `topic`, `launch_year`. 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-trends",
"facet": "topic",
"items": [
{
"value": "artificial-intelligence",
"count": 8421
},
{
"value": "developer-tools",
"count": 6033
},
{
"value": "productivity",
"count": 5210
}
]
}
}curl "https://api.crawlora.net/api/v1/datasets/producthunt-trends/facets?facet=<facet>" \
-H "x-api-key: $CRAWLORA_API_KEY"