Skip to main content
POST
/
api
/
producthunt
/
users
/producthunt/users
curl --request POST \
  --url https://api.anysite.io/api/producthunt/users \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "user": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "alias": "<string>",
    "name": "<string>",
    "url": "<string>",
    "@type": "@product_hunt_user",
    "headline": "<string>",
    "image": "<string>",
    "header_image": "<string>",
    "is_verified": true,
    "is_maker": true,
    "follower_count": 123,
    "following_count": 123,
    "submitted_post_count": 123,
    "product_count": 123,
    "collection_count": 123,
    "stack_count": 123,
    "review_count": 123,
    "day_streak": 123,
    "twitter_username": "<string>",
    "kp_month": {
      "@type": "@product_hunt_user_kitty_coin",
      "rank": 123,
      "kp": 123
    },
    "kp_year": {
      "@type": "@product_hunt_user_kitty_coin",
      "rank": 123,
      "kp": 123
    },
    "kp_all_time": {
      "@type": "@product_hunt_user_kitty_coin",
      "rank": 123,
      "kp": 123
    },
    "links": [],
    "badges": [],
    "products": []
  }
]

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:

"jakecrump"

"@kevin"

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

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
headline
string | null
image
string | null
header_image
string | null
is_verified
boolean | null
is_maker
boolean | null
follower_count
integer | null
following_count
integer | null
submitted_post_count
integer | null
product_count
integer | null
collection_count
integer | null
stack_count
integer | null
review_count
integer | null
day_streak
integer | null
twitter_username
string | null
kp_month
ProductHuntUserKittyCoin · object
kp_year
ProductHuntUserKittyCoin · object
kp_all_time
ProductHuntUserKittyCoin · object
badges
ProductHuntUserBadge · object[]
products
ProductHuntUserProduct · object[]