Who follows this feed — operator-authenticated view of GET /v1/feeds/{group}/{id}/followers
GET
/operator/inspect/feeds/{group}/{id}/followers
const url = 'http://localhost:3000/operator/inspect/feeds/example/example/followers?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/operator/inspect/feeds/example/example/followers?limit=20' \ --header 'Authorization: Bearer <token>'cursor is still accepted as a deprecated alias for next, for consistency with the rest of the API — new callers should use next.
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”limit
integer
Page size, 1-100.
next
string
Opaque paging token. Pass the next value from the previous page.
Responses
Section titled “Responses”Same page shape as GET /v1/feeds/{group}/{id}/followers.
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"}Validation failed — malformed next or an out-of-range limit.
Media typeapplication/json
object
error
required
object
code
required
string
message
required
string
requestId
required
string
fields
Present only for VALIDATION_FAILED.
Array<object>
object
path
string
message
string
Example
{ "error": { "code": "VALIDATION_FAILED" }}Invalid, expired, revoked, or absent token.
Media typeapplication/json
object
error
required
object
code
required
string
message
required
string
requestId
required
string
fields
Present only for VALIDATION_FAILED.
Array<object>
object
path
string
message
string
Example
{ "error": { "code": "VALIDATION_FAILED" }}Caller is platform staff, who have no tenant to inspect.
Media typeapplication/json
object
error
required
object
code
required
string
message
required
string
requestId
required
string
fields
Present only for VALIDATION_FAILED.
Array<object>
object
path
string
message
string
Example
{ "error": { "code": "VALIDATION_FAILED" }}