Skip to main content
GET
/
x
/
users
/
{id}
/
verified-followers
Get verified followers
curl --request GET \
  --url https://xquik.com/api/v1/x/users/{id}/verified-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.

Requested result counts are upper bounds for paid authenticated calls. When remaining credits cannot cover the full page or ID list, Xquik returns fewer results. If zero paid results are affordable, it returns 402 insufficient_credits.
1 credit per result returned · All plans from $0.00012/credit · Accepts MPP
curl "https://xquik.com/api/v1/x/users/44196397/verified-followers" \
  -H "x-api-key: xq_YOUR_KEY_HERE" | jq
The Node.js and Python snippets shape durable verified follower rows instead of printing the full response page. Persist verifiedRows or verified_rows with the checkpoint so a worker can resume pagination with next_cursor without duplicating already imported profiles.

Direct verified followers handoff

Use GET /x/users/{id}/verified-followers when a CRM, warehouse, scoring, enrichment, or agent workflow needs one JSON page of verified followers now. Use verified_follower_explorer when you need an estimated job, saved extraction, or CSV/JSON/XLSX file export.

Verified rows

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

Stable upserts

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

Readable labels

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

Verification signals

Store users[].verified and verifiedType to segment standard, business, and government accounts.

Audience signals

Store users[].followers, users[].following, and statusesCount for scoring and prioritization.

Profile enrichment

Store users[].description, location, url, profilePicture, and coverPicture when returned.

Next page

Store has_next_page and next_cursor; pass next_cursor back as cursor only when has_next_page is true.
Direct verified followers cost 1 credit per user returned. Low credit balances can return fewer users than a full page; zero affordable results return 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.

Headers

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

Response

users
object[]
Array of verified 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,
      "verified": true,
      "verifiedType": "Business"
    }
  ],
  "has_next_page": true,
  "next_cursor": "DAACCgACGE..."
}
Related: Create Extraction with verified_follower_explorer for saved verified follower jobs, Export Extraction for CSV, JSON, or XLSX downloads, Followers, Following, and Followers You Know.
Last modified on May 18, 2026