Skip to main content
POST
/
api
/
producthunt
/
products
/producthunt/products
curl --request POST \
  --url https://api.anysite.io/api/producthunt/products \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "product": "<string>",
  "timeout": 300
}
'
[
  {
    "alias": "<string>",
    "name": "<string>",
    "url": "<string>",
    "@type": "@product_hunt_product",
    "id": "<string>",
    "tagline": "<string>",
    "description": "<string>",
    "website_url": "<string>",
    "rating": 123,
    "review_count": 123,
    "follower_count": 123,
    "post_count": 123,
    "founder_review_count": 123,
    "image": "<string>",
    "screenshots": [],
    "category": "<string>",
    "categories": [],
    "operating_system": "<string>",
    "price": 123,
    "currency": "<string>",
    "is_top_product": true,
    "has_alternatives": true,
    "was_in_ycombinator": true,
    "is_offline": true,
    "created_at": "<string>",
    "updated_at": "<string>",
    "first_launched_at": "<string>",
    "twitter_url": "<string>",
    "linkedin_url": "<string>",
    "instagram_url": "<string>",
    "facebook_url": "<string>",
    "github_url": "<string>",
    "ios_url": "<string>",
    "pros": [],
    "cons": [],
    "authors": []
  }
]

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
product
string
required

Product Hunt product slug ('notion') or full product URL ('https://www.producthunt.com/products/notion').

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

"notion"

"https://www.producthunt.com/products/notion"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

alias
string
required
name
string
required
url
string
required
@type
string
default:@product_hunt_product
id
string | null
tagline
string | null
description
string | null
website_url
string | null
rating
number | null
review_count
integer | null
follower_count
integer | null
post_count
integer | null
founder_review_count
integer | null
image
string | null
screenshots
string[]
category
string | null
categories
ProductHuntCategory · object[]
operating_system
string | null
price
number | null
currency
string | null
is_top_product
boolean | null
has_alternatives
boolean | null
was_in_ycombinator
boolean | null
is_offline
boolean | null
created_at
string | null
updated_at
string | null
first_launched_at
string | null
twitter_url
string | null
linkedin_url
string | null
instagram_url
string | null
facebook_url
string | null
github_url
string | null
ios_url
string | null
pros
ProductHuntProConTag · object[]
cons
ProductHuntProConTag · object[]
authors
ProductHuntProductAuthor · object[]