Who this feed follows
GET
/v1/feeds/{group}/{id}/follows
const url = 'http://localhost:3000/v1/feeds/example/example/follows?limit=20';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url 'http://localhost:3000/v1/feeds/example/example/follows?limit=20' \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”group
required
string
id
required
string
Query Parameters
Section titled “Query Parameters”deprecated
string
Deprecated alias for next. next wins if both are sent.
limit
integer
next
string
Opaque paging token. Pass the next value from the previous page.
Responses
Section titled “Responses”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"}