Skip to main content
POST
/
api
/
producthunt
/
users
/
launches
/producthunt/users/launches
curl --request POST \
  --url https://api.anysite.io/api/producthunt/users/launches \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "user": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "alias": "<string>",
    "name": "<string>",
    "url": "<string>",
    "@type": "@product_hunt_user_launch",
    "tagline": "<string>",
    "image": "<string>",
    "launched_at": "<string>",
    "product": {
      "alias": "<string>",
      "name": "<string>",
      "url": "<string>",
      "@type": "@product_hunt_user_launch_product",
      "id": "<string>",
      "tagline": "<string>",
      "image": "<string>",
      "is_offline": true
    }
  }
]

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 user — username ('kevin'), @username ('@kevin'), or 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:

"kevin"

"@kevin"

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

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_user_launch
tagline
string | null
image
string | null
launched_at
string | null
product
ProductHuntUserLaunchProduct · object