Endpoint Playground
Test Crawlora's Product Hunt Product Details 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/product/%22chronicle-6%22" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | "chronicle-6" | Product Hunt slug or numeric ID |
{
"code": 200,
"msg": "OK",
"data": {
"id": "chronicle-6",
"name": "Chronicle",
"tagline": "Stunning presentations with AI. No design skills required.",
"description": "Chronicle combines AI with taste to help you go from raw thoughts to polished presentations. Designed for serious work: Start with templa...",
"rating": 4.8,
"review_count": 38
}
}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 the core Product Hunt product details.
{
"code": 200,
"msg": "OK",
"data": {
"id": "chronicle-6",
"name": "Chronicle",
"tagline": "Stunning presentations with AI. No design skills required.",
"description": "Chronicle combines AI with taste to help you go from raw thoughts to polished presentations. Designed for serious work: Start with templa...",
"rating": 4.8,
"review_count": 38
}
}curl "https://api.crawlora.net/api/v1/producthunt/product/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"