curl --request POST \
--url https://api.scrapeunblocker.com/products/producthunt \
--header 'x-scrapeunblocker-key: <api-key>'import requests
url = "https://api.scrapeunblocker.com/products/producthunt"
headers = {"x-scrapeunblocker-key": "<api-key>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {'x-scrapeunblocker-key': '<api-key>'}};
fetch('https://api.scrapeunblocker.com/products/producthunt', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Scrape Product Hunt launches, products, search and topics
Turns Product Hunt into JSON. mode=leaderboard returns a day’s ranked launches (date=YYYY-MM-DD, or today) with votes, comments, topics and rank; mode=search returns products matching query; mode=topic returns products under a topic slug; mode=detail returns one product by slug with description, website, socials, review rating, followers and categories. Set max_results for the list modes.
curl --request POST \
--url https://api.scrapeunblocker.com/products/producthunt \
--header 'x-scrapeunblocker-key: <api-key>'import requests
url = "https://api.scrapeunblocker.com/products/producthunt"
headers = {"x-scrapeunblocker-key": "<api-key>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {'x-scrapeunblocker-key': '<api-key>'}};
fetch('https://api.scrapeunblocker.com/products/producthunt', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Authorizations
Your ScrapeUnblocker API key. Apply on every request.
Query Parameters
What to fetch: leaderboard, search, topic, detail.
Search terms (mode=search), e.g. 'ai chatbot'.
Leaderboard day as YYYY-MM-DD (mode=leaderboard). Omit for today. Past days are finalised and ranked; today's board is live and not ranked yet.
Topic slug (mode=topic), e.g. 'artificial-intelligence'.
Product slug (mode=detail), e.g. 'notion'.
Max products to return for list modes (leaderboard/search/topic).
1 <= x <= 200Exit-IP country (ISO-2). Leave blank - Product Hunt is global and a forced country only hurts.
Response
JSON with a products array (list modes) or a product object (detail).

