Endpoint Playground
Test Crawlora's Product Hunt Alternatives 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/%22clico%22/alternatives" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | "clico" | Product Hunt slug |
| first | integer | No | Page size | |
| cursor | string | No | Pagination cursor | |
| order | string | No | Sort order | |
| tags | string | No | Comma-separated tag slugs |
{
"code": 200,
"msg": "OK",
"data": {
"product_id": "1191613",
"slug": "clico",
"name": "Clico",
"followers_count": 577,
"categories": [
"Writing assistants"
],
"alternative_tags": [
{
"name": "chrome extension",
"count": 24
}
]
}
}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 paginated alternatives, tags, and related discussions for a Product Hunt product.
{
"code": 200,
"msg": "OK",
"data": {
"product_id": "1191613",
"slug": "clico",
"name": "Clico",
"followers_count": 577,
"categories": [
"Writing assistants"
],
"alternative_tags": [
{
"name": "chrome extension",
"count": 24
}
]
}
}curl "https://api.crawlora.net/api/v1/producthunt/product/<id>/alternatives" \
-H "x-api-key: $CRAWLORA_API_KEY"