Skip to content

Who follows this feed — operator-authenticated view of GET /v1/feeds/{group}/{id}/followers

GET
/operator/inspect/feeds/{group}/{id}/followers
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.

group
required
string
id
required
string
limit
integer
default: 20 >= 1 <= 100

Page size, 1-100.

next
string

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

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
Allowed values: VALIDATION_FAILED UNAUTHENTICATED FORBIDDEN NOT_FOUND CONFLICT RATE_LIMITED INTERNAL
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
Allowed values: VALIDATION_FAILED UNAUTHENTICATED FORBIDDEN NOT_FOUND CONFLICT RATE_LIMITED INTERNAL
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
Allowed values: VALIDATION_FAILED UNAUTHENTICATED FORBIDDEN NOT_FOUND CONFLICT RATE_LIMITED INTERNAL
message
required
string
requestId
required
string
fields

Present only for VALIDATION_FAILED.

Array<object>
object
path
string
message
string
Example
{
"error": {
"code": "VALIDATION_FAILED"
}
}