Endpoint Playground
Test Crawlora's Product Hunt Product Customers 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/%22openai%22/customers?order=customers" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | "openai" | Product Hunt slug |
| order | string | No | customers | Product Hunt customers order |
| page | integer | No | Page number | |
| page_size | integer | No | Results per page |
{
"code": 200,
"msg": "OK",
"data": {
"product_id": "594550",
"slug": "openai",
"name": "OpenAI",
"order": "customers",
"page": 1,
"page_size": 10,
"connection": "customers",
"total_count": 120,
"pages_count": 12,
"has_previous_page": false,
"has_next_page": true,
"items": [
{
"id": "1192159",
"slug": "sheet-ninja-2",
"name": "Sheet Ninja",
"tagline": "Ship vibe-coded apps. Your data stays in Google Sheets.",
"reviews_rating": 4.8,
"reviews_count": 42
}
]
}
}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 customer products for a Product Hunt product using Product Hunt's ProductCustomersPage GraphQL operation.
{
"code": 200,
"msg": "OK",
"data": {
"product_id": "594550",
"slug": "openai",
"name": "OpenAI",
"order": "customers",
"page": 1,
"page_size": 10,
"connection": "customers",
"total_count": 120,
"pages_count": 12,
"has_previous_page": false,
"has_next_page": true,
"items": [
{
"id": "1192159",
"slug": "sheet-ninja-2",
"name": "Sheet Ninja",
"tagline": "Ship vibe-coded apps. Your data stays in Google Sheets.",
"reviews_rating": 4.8,
"reviews_count": 42
}
]
}
}curl "https://api.crawlora.net/api/v1/producthunt/product/<id>/customers" \
-H "x-api-key: $CRAWLORA_API_KEY"