4da209b29df8

OpenAPI 3.1.02026-08-12127104506.1 KB
Users

List accounts a user follows

List accounts a user follows.

get/api/v1/x/users/{id}/following

Path parameters

idstring required

User ID or username for following lookup

Query parameters

cursorstring

Cursor from the previous response. Xquik cursors resume automatic coverage. Existing unprefixed cursors keep legacy standard behavior.

mode'standard' | 'coverage'

Omit mode for resumable maximum coverage. Standard keeps legacy pagination. Coverage returns diagnostics once and rejects cursors.

afterstring

Deprecated following cursor alias. Prefer cursor.

pageSizeinteger

Maximum user profiles: automatic 300; standard 200. Sources return fewer profiles. Continue with has_next_page.

minFollowersinteger

Minimum follower count. Filtering happens before billing.

maxFollowersinteger

Maximum follower count. Missing counts pass this maximum.

minFollowinginteger

Minimum following count.

maxFollowinginteger

Maximum following count.

minStatusesinteger

Minimum post count. minPosts is also accepted.

maxStatusesinteger

Maximum post count. maxPosts is also accepted.

minAccountAgeDaysinteger

Minimum account age in whole days.

verifiedOnlyboolean

Only return verified profiles.

verifiedTypestring

Match the verification type exactly, ignoring case.

hasWebsiteboolean

Only return profiles with a website.

hasLocationboolean

Only return profiles with a location.

bioContainsstring

Match any comma-separated or line-separated bio term, ignoring case.

locationContainsstring

Match a location substring, ignoring case.

usernameContainsstring

Match a username substring, ignoring case.

limitinteger

Legacy page-size alias outside explicit coverage mode. Coverage accepts 1-10000. Prefer pageSize.

Response

List of following

OR

Example response

{
  "users": [
    {
      "id": "9876543210",
      "username": "elonmusk",
      "name": "Elon Musk"
    }
  ],
  "has_next_page": true,
  "next_cursor": "DAACCgACGRElMJcAAA"
}