Product Hunt
Product Hunt currently enters through /research rather than a dedicated platform namespace.
Example
Source-filtered Product Hunt research
```bash
curl https://api.faircompany.ai/v1/crawl/research \
-X POST \
-H "Authorization: Bearer fc_live_xxx" \
-H "Content-Type: application/json" \
-d '{
"query": "AI meeting notes",
"sources": ["producthunt"],
"limit": 10
}'
```
```ts
const results = await fc.research({
query: "AI meeting notes",
sources: ["producthunt"],
limit: 10,
});
console.log(results.all.map((item) => item.title));
```
```python
results = fc.research(
"AI meeting notes",
sources=["producthunt"],
limit=10,
)
print([item.title for item in results.all])
```
```json
{
"tool": "faircrawl_research",
"arguments": {
"query": "AI meeting notes",
"sources": ["producthunt"],
"limit": 10
}
}
```
Notes
- use this source for launch discovery and category scans
- if you already have one Product Hunt URL,
/web/scrapemay be cheaper than a broad research call