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

Choose one catalog endpoint for this request.

11 shown
GETapiKey2 credits/requestproducthunt.customersResponseDocProductHunt
GET /producthunt/product/{id}/customers

Retrieve Product Hunt product customers

Returns paginated customer products for a Product Hunt product using Product Hunt's ProductCustomersPage GraphQL operation.

API key required. Paste a full key or rotate one from the API Keys page.

Set up API key
View docs

API key

API key required for live requests. Your key is only used to send requests from this Playground.

not configured

Active Playground key: not configured

Manage API keys in Console

Path parameters

Add an API key to send a live request.

If an active API key is configured, Copy cURL includes it. Share links never include API keys.

View docs
Sample responseGET

Shown before your first request. Add an API key and send a request to see the live response, status, latency, and headers.

{
  "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
      }
    ]
  }
}

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>"