Skip to main content
POST
/
api
/
producthunt
/
products
/
alternatives
/producthunt/products/alternatives
curl --request POST \
  --url https://api.anysite.io/api/producthunt/products/alternatives \
  --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_alternative",
    "tagline": "<string>",
    "description": "<string>",
    "image": "<string>",
    "rating": 123,
    "review_count": 123,
    "follower_count": 123,
    "category": "<string>",
    "categories": [],
    "tags": [],
    "is_top_product": true,
    "is_offline": true,
    "embedding_summary": "<string>",
    "combined_score": 123,
    "embedding_score": 123,
    "category_score": 123,
    "rating_score": 123
  }
]

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 alternative products 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_alternative
tagline
string | null
description
string | null
image
string | null
rating
number | null
review_count
integer | null
follower_count
integer | null
category
string | null
categories
ProductHuntAlternativeCategory · object[]
tags
string[]
is_top_product
boolean | null
is_offline
boolean | null
embedding_summary
string | null
combined_score
number | null
embedding_score
number | null
category_score
number | null
rating_score
number | null