Search forum posts across the web including discussion boards, Q&A sites, and community forums. Returns post title, URL, source domain, and content snippet. Supports filtering by time period and country.
curl "https://apidirect.io/v1/forums/posts?query=programming&time=week&country=US" \
-H "X-API-Key: YOUR_API_KEY"
{
"posts": [
{
"position": 1,
"rank": 1,
"title": "Discussion about programming",
"url": "https://forum.example.com/thread/...",
"source": "forum.example.com",
"domain": "forum.example.com",
"snippet": "Forum post content...",
"sentiment": {
"emotions": {
"joy": 40,
"trust": 55,
"fear": 0,
"surprise": 10,
"sadness": 0,
"disgust": 0,
"anger": 0,
"anticipation": 30
},
"dominant_emotion": "trust",
"emotional_intensity": 5,
"polarity": "positive"
}
}
],
"page": 1,
"count": 10
}