Skip to main content
POST
/
api
/
producthunt
/
launches
/
search
/producthunt/launches/search
curl --request POST \
  --url https://api.anysite.io/api/producthunt/launches/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "keyword": "<string>",
  "count": 2,
  "timeout": 300,
  "topic": "Productivity",
  "featured": true
}
'
[
  {
    "id": "<string>",
    "name": "<string>",
    "alias": "<string>",
    "url": "<string>",
    "@type": "@product_hunt_search_launch",
    "created_at": "<string>",
    "product": {
      "id": "<string>",
      "name": "<string>",
      "alias": "<string>",
      "url": "<string>",
      "@type": "@product_hunt_search_launch_product",
      "tagline": "<string>",
      "rating": 123,
      "review_count": 123,
      "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
keyword
string
required

Search keyword

Minimum string length: 1
Examples:

"ai"

"notion"

"crm"

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
topic
string | null

Filter to launches tagged with this Product Hunt topic. Must be the topic DISPLAY NAME in title case (e.g. 'Productivity', 'Artificial Intelligence', 'Notion'), not the URL slug — the upstream search index here keys on display name, while other Product Hunt endpoints (topics, categories, leaderboard) take topic as slug.

Example:

"Productivity"

When true, only featured launches are returned (matches the site's default).

Response

Successful Response

id
string
required
name
string
required
alias
string
required
url
string
required
@type
string
default:@product_hunt_search_launch
created_at
string | null
product
ProductHuntSearchLaunchProduct · object