Public Playground
Preview the endpoint before sending a live request
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.
Playground
Retrieve Product Hunt product customers API Playground
Returns paginated customer products for a Product Hunt product using Product Hunt's ProductCustomersPage GraphQL operation.
GETapiKey2 credits/requestproducthunt.customersResponseDocProductHunt
Endpoint details
Returns paginated customer products for a Product Hunt product using Product Hunt's ProductCustomersPage GraphQL operation.
- Method
- GET
- Path
- /producthunt/product/{id}/customers
- Authentication
- apiKey
- Credit cost
- 2 credits/request
- Platform
- ProductHunt
- Parameters
- 5 documented fields
Request parameters
id:pathorder:querypage:querypage_size:queryx-api-key:header
Response schema fields
codedatadata.connectiondata.end_cursordata.has_next_pagedata.has_previous_pagedata.itemsdata.items[].badgesdata.items[].badges[].categorydata.items[].badges[].datedata.items[].badges[].iddata.items[].badges[].period
Sample response summary
{
"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 example
curl "https://api.crawlora.net/api/v1/producthunt/product/<id>/customers" \
-H "x-api-key: <api-key>"