Skip to main content
POST
Get Following by Page

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
screen_name
string
required

Twitter screen name of the target user (with or without @).

Example:

"elonmusk"

next_cursor
string | null

Cursor returned by the previous page. Leave empty to fetch the first page.

Example:

"1234567890"

Response

Current page data (up to 200 following users) and pagination metadata (has_next_page, next_cursor).

data
(UserInfo · object | null)[]
required

Current page following items.

User information structure

has_next_page
boolean
required

Whether another page is available.

code
integer
default:200

HTTP status code

msg
string
default:success

Response message

next_cursor
string | null

Use this cursor to fetch the next page when has_next_page is true.

Example:

"1234567890"