Skip to main content
GET
/
x
/
users
/
{id}
/
followers
Get followers API
curl --request GET \
  --url https://xquik.com/api/v1/x/users/{id}/followers \
  --header 'x-api-key: <api-key>'

Documentation Index

Fetch the complete documentation index at: https://docs.xquik.com/llms.txt

Use this file to discover all available pages before exploring further.

1 credit per result returned · All plans from $0.00012/credit · Accepts MPP
curl "https://xquik.com/api/v1/x/users/44196397/followers" \
  -H "x-api-key: xq_YOUR_KEY_HERE" | jq
The Node.js and Python snippets shape CRM-safe import rows instead of printing full follower profiles. Persist the mapped rows and nextCursor in your sync job.

Direct follower handoff

Use GET /x/users/{id}/followers when a CRM, warehouse, audience, or agent workflow needs one paginated JSON page now. Use follower_explorer when you need an estimated job, saved extraction, or CSV/JSON/XLSX file export.

Follower rows

Store users[] as the follower profile rows returned on this page.

Stable upserts

Store users[].id as x_user_id for CRM, warehouse, audience, and agent dedupe.

Readable labels

Store users[].username and users[].name for handles, labels, enrichment, and dedupe.

Profile enrichment

Store users[].description, location, and url when returned. Empty profile fields are omitted.

Segmentation inputs

Store users[].followers, users[].following, verified, and verifiedType for filters and scoring.

Profile media

Store users[].profilePicture and coverPicture for enrichment, review queues, or profile previews.

Next page

Store has_next_page and next_cursor; pass next_cursor back as cursor only when has_next_page is true.
pageSize from 20 to 200 is an upper bound. Paid authenticated calls can return fewer rows when the remaining credit balance is lower than the requested page size. A balance that cannot afford any result returns 402 insufficient_credits. For MPP callers, this endpoint is billed as a session at USD 0.00015 per user returned.

Path parameters

id
string
required
User ID (numeric) or username.

Query parameters

cursor
string
Pagination cursor from a previous response. Omit for the first page.
after
string
Legacy cursor alias. Use cursor; when both are present, cursor wins.
pageSize
number
Results per page. Range: 20-200. Default: 200.
limit
number
Legacy page size alias. Use pageSize; when both are present, pageSize wins.

Headers

x-api-key
string
required
Your API key. Session cookie authentication is also supported.

Response

users
object[]
Array of follower profiles.
has_next_page
boolean
Whether more results are available.
next_cursor
string
Cursor for the next page.
{
  "users": [
    {
      "id": "987654321",
      "username": "xquikcom",
      "name": "Xquik",
      "followers": 10000,
      "following": 500,
      "verified": true,
      "profilePicture": "https://pbs.twimg.com/profile_images/xquik/photo.jpg",
      "description": "All-in-one X automation platform"
    }
  ],
  "has_next_page": true,
  "next_cursor": "DAACCgACGE..."
}
Related: Follower Export CRM Workflow for saved CSV, JSON, or XLSX files for imports or upserts, Following, Verified Followers, and Followers You Know.
Last modified on May 15, 2026