Skip to content

Who follows this feed

GET
/v1/feeds/{group}/{id}/followers
curl --request GET \
--url 'http://localhost:3000/v1/feeds/example/example/followers?limit=20' \
--header 'Authorization: Bearer <token>'
group
required
string
id
required
string
cursor
deprecated
string

Deprecated alias for next. next wins if both are sent.

limit
integer
default: 20 >= 1 <= 100
next
string

Opaque paging token. Pass the next value from the previous page.

A page of follows.

Media typeapplication/json
object
results
required
Array
next
required

Opaque cursor. Null when no further page.

string | null
results
required
Array<object>
object
source_group
required
string
source_id
required
string
target_group
required
string
target_id
required
string
created_at
required
string format: date-time
Examplegenerated
{
"results": [
{
"source_group": "example",
"source_id": "example",
"target_group": "example",
"target_id": "example",
"created_at": "2026-04-15T12:00:00Z"
}
],
"next": "example"
}