Skip to main content
GET
/
follows
/
following
Get Following List
curl --request GET \
  --url http://localhost:3000/api/follows/following
{
  "follows": [
    {}
  ],
  "hasMore": true,
  "nextCursor": "<string>",
  "total": 123
}

Query Parameters

limit
integer
default:20

Number of follows to retrieve

Required range: 1 <= x <= 50
cursor
string

Pagination cursor

Response

Following list retrieved successfully

follows
object[]

List of follow relationships

hasMore
boolean

Whether there are more results

nextCursor
string

Cursor for next page

total
number

Total number of results in current page