Skip to main content
POST
/
api
/
producthunt
/
products
/
reviews
/producthunt/products/reviews
curl --request POST \
  --url https://api.anysite.io/api/producthunt/products/reviews \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "product": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@product_hunt_review",
    "review_type": "<string>",
    "status": "<string>",
    "rating": 123,
    "ease_of_use_rating": 123,
    "reliability_rating": 123,
    "value_for_money_rating": 123,
    "customization_rating": 123,
    "text": "<string>",
    "overall_experience": "<string>",
    "positive_feedback": "<string>",
    "negative_feedback": "<string>",
    "alternatives_feedback": "<string>",
    "pros": [],
    "cons": [],
    "alternatives": [],
    "question_answers": [],
    "author": {
      "@type": "@product_hunt_review_author",
      "id": "<string>",
      "name": "<string>",
      "alias": "<string>",
      "headline": "<string>",
      "image": "<string>",
      "review_count": 123,
      "is_verified": true,
      "is_ambassador": true
    },
    "created_at": "<string>",
    "updated_at": "<string>",
    "vote_count": 123,
    "comment_count": 123,
    "impression_count": 123,
    "url": "<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
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"

count
integer
required

Max number of reviews 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
@type
string
default:@product_hunt_review
review_type
string | null
status
string | null
rating
number | null
ease_of_use_rating
number | null
reliability_rating
number | null
value_for_money_rating
number | null
customization_rating
number | null
text
string | null
overall_experience
string | null
positive_feedback
string | null
negative_feedback
string | null
alternatives_feedback
string | null
pros
ProductHuntReviewTag · object[]
cons
ProductHuntReviewTag · object[]
alternatives
ProductHuntReviewAlternative · object[]
question_answers
ProductHuntReviewQuestionAnswer · object[]
author
ProductHuntReviewAuthor · object
created_at
string | null
updated_at
string | null
vote_count
integer | null
comment_count
integer | null
impression_count
integer | null
url
string | null