/api/v1/acts/feedList acts (feed)
The circle's activity feed, newest first. Quick acts are excluded — only story acts are shared. Pass since to pull incrementally: you get acts with createdSec >= since plus a nextCursor to use on the next poll (inclusive boundary — dedupe by act id client-side).
| Param | In | Type | Required | Notes |
|---|---|---|---|---|
| circle | query | string | no | Defaults to fgcu. |
| since | query | unix seconds | no | Incremental cursor. Omit for the full feed. |
curl -s "https://developer.ripplecore.co/api/v1/acts/feed?circle=fgcu" \ -H "Authorization: Bearer rc_live_fgcu_a1b2c3d4e5f6a7b8"
Example response
{
"circle": "fgcu",
"acts": [
{
"id": "a1",
"circle": "fgcu",
"memberId": "m1",
"kind": "story",
"category": "Environment",
"caption": "Beach cleanup at Bunche Beach before class.",
"peopleHelped": 8,
"reactions": 12,
"createdSec": 1752499400
}
],
"nextCursor": 1752499400
}- Poll with since=nextCursor every N seconds for an incremental sync — see the analytics demo.
Used by: Ripple Wall · ESG analytics · Mobile companion