Skip to main content
POST
/
api
/
producthunt
/
products
/
launches
/producthunt/products/launches
curl --request POST \
  --url https://api.anysite.io/api/producthunt/products/launches \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "product": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "alias": "<string>",
    "name": "<string>",
    "url": "<string>",
    "@type": "@product_hunt_product_launch",
    "tagline": "<string>",
    "external_url": "<string>",
    "image": "<string>",
    "created_at": "<string>",
    "featured_at": "<string>",
    "updated_at": "<string>",
    "vote_count": 123,
    "launch_day_vote_count": 123,
    "comment_count": 123,
    "daily_rank": 123,
    "weekly_rank": 123,
    "monthly_rank": 123,
    "state": "<string>",
    "awards": []
  }
]

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 launches 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_product_launch
tagline
string | null
external_url
string | null
image
string | null
created_at
string | null
updated_at
string | null
vote_count
integer | null
launch_day_vote_count
integer | null
comment_count
integer | null
daily_rank
integer | null
weekly_rank
integer | null
monthly_rank
integer | null
state
string | null
awards
ProductHuntProductLaunchAward · object[]