Skip to main content
POST
/
api
/
producthunt
/
users
/
stacks
/producthunt/users/stacks
curl --request POST \
  --url https://api.anysite.io/api/producthunt/users/stacks \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "user": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "alias": "<string>",
    "name": "<string>",
    "url": "<string>",
    "@type": "@product_hunt_user_stack",
    "product_id": "<string>",
    "tagline": "<string>",
    "image": "<string>",
    "rating": 123,
    "stack_count": 123,
    "is_offline": true,
    "created_at": "<string>"
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.anysite.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
user
string
required

Product Hunt username ('kevin', '@kevin') or full profile URL ('https://www.producthunt.com/@kevin').

Minimum string length: 1
Pattern: ^(?:https?://[^\s]+|//[^\s]+|(?:www\.)?producthunt\.com[^\s]*|@?[A-Za-z0-9][A-Za-z0-9._-]*)$
Examples:

"syswarren"

"@rrhoover"

"https://www.producthunt.com/@kevin"

count
integer
required

Max number of stack products to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
alias
string
required
name
string
required
url
string
required
@type
string
default:@product_hunt_user_stack
product_id
string | null
tagline
string | null
image
string | null
rating
number | null
stack_count
integer | null
is_offline
boolean | null
created_at
string | null