# ProductHunt Product Info ## Overview | Property | Value | |----------|-------| | **Status** | degraded | | **Method** | `GET` | | **Endpoint** | `/v2/producthunt/product/info` | | **Base URL** | `https://api.piloterr.com` | | **Credit Cost** | 1 credit per call | | **Documentation** | https://www.piloterr.com/library/producthunt-product-info | ## Description Retrieve product data from ProductHunt, including tagline, categories, screenshots, reviews rating, and social links. ## Authentication - **Key Name:** `x-api-key` - **Location:** HTTP Header - **Get an API key:** https://app.piloterr.com/register ## Example Request ```bash curl --location --request GET 'https://api.piloterr.com/v2/producthunt/product/info' \ --header 'Content-Type: application/json' \ --header 'x-api-key: YOUR_API_KEY' ``` ## Example Response ### Get ProductHunt info for Miro ```json { "id": "111772", "logo": "https://ph-files.imgix.net/01cca4e0-cc5d-4b42-931e-c76756e76f07.jpeg", "name": "Miro", "slug": "miro", "tagline": "The visual collaboration platform for every team", "categories": [ { "id": "46", "name": "Productivity" } ], "description": "Miro enables you to engage all your collocated, distributed, or remote teams across formats, tools, channels, and time zones, without the constraints of physical location, meeting space, and whiteboards.", "posts_count": 25, "screenshots": [ "https://ph-files.imgix.net/b8d40ef8-32f7-474f-90b9-b29801ae04a5.jpeg", "https://ph-files.imgix.net/7718a5c1-a635-4804-a605-4543f506e77a.png" ], "pricing_type": null, "social_links": { "website": "https://miro.com/" }, "reviews_rating": 4.85, "reviewers_count": 342 } ``` ## Documentation ## Overview The ProductHunt Product Info endpoint retrieves product data from ProductHunt including tagline, categories, screenshots, and review ratings. ## Quickstart ``` GET https://api.piloterr.com/v2/producthunt/product/info?query=miro ``` ## Parameters | Parameter | Type | Required | Description | |---|---|---|---| | `query` | string | yes | ProductHunt product URL or slug | ## Response fields | Field | Type | Description | |---|---|---| | `name` | string | Product name | | `tagline` | string | Product tagline | | `categories` | array | ProductHunt categories | | `reviews_rating` | number | Average rating | | `reviewers_count` | number | Total reviewers | ## Main use cases - Monitor competitor product launches on ProductHunt - Enrich SaaS product databases with ProductHunt metadata - Build startup discovery tools by category and rating - Track product traction over time