docs / forum
Forum Feed
Forum Feed
base /forum/v14 endpoints
post
/forum/v1/latest2 creditsNewest topics from one forum, each with its creation time. Ask for the last 24 hours and you get exactly what people opened today.
| Parameter | Allowed / range | Description | |
|---|---|---|---|
| site | required | n8n · make · bubble · retool · shopify · biggerpockets · localsearchforum · ecommercefuel · uipath · frappe · shopifydev · openai · cursor · huggingface · discoursemeta · streamlit · namepros · dnforum · ebay · elitetrader · trade2win · esri · betangel · plesk · etsy · powerbi · propertychat · affiliatefix | Which forum to read. Each one is a live community whose members discuss the tools they use and the problems they hit. |
| limit = 30 | optional | 1–200 | How many topics to return (1-200). Discourse forums page automatically to reach the number you ask for; RSS feeds return whatever the feed publishes, so the real count can be lower. |
| since_hours | optional | 1–8760 | Only return topics created within this many hours. Use 24 for what was posted today. Filtering is on the creation time, not the last reply, so an old thread that got a new comment is not returned unless you also set order_by=bumped. |
| order_by = created | optional | created · bumped | Which timestamp to sort and filter by. Use created to find new questions; use bumped to find threads that are active again. |
post
/forum/v1/sites1 creditEvery forum this API can read, with its platform and market.
Try in playground →post
/forum/v1/topic1 creditThe full text of one topic: the opening post and every reply.
| Parameter | Allowed / range | Description | |
|---|---|---|---|
| url | required | — | Full URL of a forum topic. Returns the opening post and the replies as plain text. |
post
/forum/v1/search1 creditSearch inside one forum. Results come back in the forum's own relevance order, not by date, so use latest when you need recency.
| Parameter | Allowed / range | Description | |
|---|---|---|---|
| site | required | n8n · make · bubble · retool · shopify · biggerpockets · localsearchforum · ecommercefuel · uipath · frappe · shopifydev · openai · cursor · huggingface · discoursemeta · streamlit · namepros · dnforum · ebay · elitetrader · trade2win · esri · betangel · plesk · etsy · powerbi · propertychat · affiliatefix | Which forum to read. Each one is a live community whose members discuss the tools they use and the problems they hit. |
| query | required | — | Words to search for inside the forum. |
| limit = 30 | optional | 1–200 | How many topics to return (1-200). Discourse forums page automatically to reach the number you ask for; RSS feeds return whatever the feed publishes, so the real count can be lower. |
Example request · latest
curl -X POST https://api.reefapi.com/forum/v1/latest \
-H "x-api-key: $REEF_KEY" \
-H "content-type: application/json" \
-d '{}'Response shape
{
"ok": true,
"data": { /* the result */ },
"meta": {
"latency_ms": 240,
"record_count": 12,
"completeness_pct": 100
},
"error": null
}