Endpoint Playground
Test Crawlora's Product Hunt maker 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/items/<username>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| username (path) | string | Yes | Product Hunt maker username, e.g. rrhoover |
{
"code": 200,
"msg": "OK",
"data": {
"maker_id": "12345",
"username": "rrhoover",
"name": "Ryan Hoover",
"headline": "Founder of Product Hunt",
"followers_count": 42000,
"product_count": 8,
"total_votes": 5210,
"best_product": {
"slug": "product-hunt",
"name": "Product Hunt",
"latest_score": 1200
},
"made_products": [
{
"product_id": "1",
"slug": "product-hunt",
"name": "Product Hunt",
"latest_score": 1200
}
],
"topics": [
"tech",
"productivity"
]
}
}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 one maker by Product Hunt username from dataset id enum value `producthunt-makers`, including the products they made and their aggregate footprint. Returns 404 when the username is not in the dataset. 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": {
"maker_id": "12345",
"username": "rrhoover",
"name": "Ryan Hoover",
"headline": "Founder of Product Hunt",
"followers_count": 42000,
"product_count": 8,
"total_votes": 5210,
"best_product": {
"slug": "product-hunt",
"name": "Product Hunt",
"latest_score": 1200
},
"made_products": [
{
"product_id": "1",
"slug": "product-hunt",
"name": "Product Hunt",
"latest_score": 1200
}
],
"topics": [
"tech",
"productivity"
]
}
}curl "https://api.crawlora.net/api/v1/datasets/producthunt-makers/items/<username>" \
-H "x-api-key: $CRAWLORA_API_KEY"