Get Category
producthunt.category
Fetch a Product Hunt category with subcategories, parent category, and ranked product listing.
Request
curl -X POST https://data.upscrape.com/execute \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"input":{"max_products":5,"url":"ai-meeting-notetakers"},"capability":"producthunt.category"}'
Input
| Field | Type | Required | Description |
|---|---|---|---|
max_products
| integer | optional | Max products to return (default: 100, max: 500) |
url
| string | required | Category URL or slug |
Output
| Field | Type | Required | Description |
|---|---|---|---|
description
| string | optional | |
id
| string | optional | |
name
| string | optional | |
parent_category
| object | null | optional | |
path
| string | optional | |
products
| array<object> | optional | |
products[].id
| string | optional | |
products[].logo_url
| string | optional | |
products[].name
| string | optional | |
products[].reviews_count
| integer | optional | |
products[].reviews_rating
| number | optional | |
products[].slug
| string | required | |
products[].tagline
| string | optional | |
products[].url
| string | optional | |
reviews_count
| integer | optional | |
slug
| string | required | |
subcategories
| array<object> | optional | |
subcategories[].id
| string | optional | |
subcategories[].name
| string | optional | |
subcategories[].path
| string | optional | |
subcategories[].slug
| string | optional | |
total_count
| integer | optional | |
url
| string | optional |