Define the audience question
Start with one decision your audience list must support. Examples include finding relevant creators, qualifying public profiles, or comparing follower communities. Keep the question beside every exported row. Choose a source that matches that decision:- User search finds public profiles matching a name, handle, or topic.
- Followers show who follows a selected public account.
- Following shows which accounts a selected profile follows.
- Verified followers isolate returned profiles with X verification.
- Tweet search confirms public conversation around a selected topic.
Pick the discovery path
Keyword seeds
Use
GET /api/v1/x/users/search?q={query} or people_search to find
candidate profiles by name, handle, or topic.Follower expansion
Use
follower_explorer or GET /api/v1/x/users/{id}/followers to collect
people who already follow one seed account.Following expansion
Use
following_explorer or GET /api/v1/x/users/{id}/following to collect
accounts one seed profile follows.Verified segment
Use
verified_follower_explorer or
GET /api/v1/x/users/{id}/verified-followers when verified accounts should
be scored separately.Seed accounts
Start with a query when you do not already have exact handles. Store the search query, rank, user ID, username, follower count, verification state, and cursor.seed_query, seed_user_id, seed_username, and seed_rank together.
That evidence explains why each follower or following row entered the audience.
Expand the audience
Use extraction jobs when the output needs estimate, retry, audit, and file download handoff. Use direct JSON pages when the app needs the freshest page now.Saved followers
POST /api/v1/extractions/estimate, then POST /api/v1/extractions with
toolType: "follower_explorer".Saved following
Use
toolType: "following_explorer" with targetUsername and optional
resultsLimit.Saved people search
Use
toolType: "people_search" with searchQuery for reusable profile
search exports.Saved verified followers
Use
toolType: "verified_follower_explorer" for a reusable verified
follower export.Direct JSON pages
Use direct pages when the app owns the loop and checkpoint state.has_next_page and next_cursor with the seed account and route. Pass
next_cursor back as cursor only when has_next_page is true.
Save a checkpoint after every completed page. Include the route, seed user ID,
input cursor, next cursor, page size, and collection time. Retry from the last
saved next cursor after a worker restart.
Stop when has_next_page is false or next_cursor is empty. Also stop when a
cursor repeats. Never share one cursor between followers and following routes.
Combine audience sources
Union sources when broad discovery matters. Intersect sources when stronger relationship evidence matters. Always join on numeric X user ID. Useful source combinations include:- Followers of several relevant creators reveal shared audience members.
- Following lists reveal accounts your seed profiles actively chose.
- User search plus followers validates a topic match and relationship.
- Verified followers plus tweet search validates verification and activity.
- Batch user enrichment refreshes profile fields before CRM upserts.
Score rows
Create one normalized row per candidate before enrichment or outreach.Relationship evidence
Count distinct seed accounts, source routes, and matched search queries.
Profile evidence
Evaluate returned bio, location, verification, and public profile counts.
Conversation evidence
Keep matching tweet IDs, creation times, replies, reposts, and likes.
Qualification decision
Store
qualified, qualification_reasons, and the ruleset version.Validate active conversation
Use tweet search when a candidate segment must be active around a topic before it enters a campaign, CRM list, or agent queue.Build a Twitter lead generation handoff
Treat the exported file as a public-profile research list. Apply your consent, privacy, and outreach rules before contacting anyone. Xquik does not supply private email addresses or private messages through this workflow. Use numeric X user ID for CRM upserts. Keep these concrete columns:x_user_idx_usernamedisplay_namebiolocationfollower_countfollowing_countverifiedverified_typesource_countsource_seed_idsmatched_queriesmatching_tweet_idsqualifiedqualification_reasonscollected_atruleset_version
bio, location, or follower counts with CRM notes. Refresh public
fields by X user ID and preserve prior collection timestamps.
Measure Twitter audience insights
Calculate insights only from collected public profiles and tweets. Report the sample size, collection time, seed accounts, query, and missing-field counts. Useful measurements include:- Shared followers across selected seed accounts
- Followers versus following source counts
- Verified and unverified profile counts
- Returned profile locations without inferred geography
- Bio terms found in returned descriptions
- Recent matching authors and tweet counts
- Reply, repost, like, and quote totals for matching tweets
Handle audience collection failures
400: Correct the query, user ID, username, or page parameter.401: Replace the missing or invalid credential.402: Top up credits before resuming the saved cursor.404: Verify the seed account or requested profile still resolves.424: Retry the temporary read-service dependency failure.429: Wait forRetry-Afterbefore requesting another page.502: Retry the temporary read-service failure later.
424, 429, and 502 with capped backoff. Do not restart from page one.
Resume from the last committed cursor. Do not retry 400, 401, 402, or
404 without changing the request or account state.
Twitter audience discovery questions
How do I find my target audience on Twitter?
Start with topic searches or relevant seed accounts. Expand their followers or following lists. Then qualify profiles with returned fields and matching tweets.How do I analyze a competitor’s Twitter followers?
Export that public account’s followers. Keep the competitor’s numeric X user ID as the seed. Dedupe candidates by their own numeric X user IDs.Can I export Twitter followers to CSV?
Yes. Run afollower_explorer extraction, wait for completion, then export CSV.
Use direct JSON pages when your application owns pagination and checkpoints.
What is the difference between followers and following?
Followers chose to follow the seed account. Following lists accounts the seed profile chose. Keep these relationship directions separate in every row.Can Xquik return Twitter audience demographics?
No. This workflow returns documented public profile and tweet fields. Do not infer private age, gender, email, purchase behavior, or other demographics.How do I build a Twitter lead list?
Collect public profiles, preserve source evidence, and apply explicit qualification rules. Export only the fields your CRM needs. Apply consent and outreach requirements outside this collection workflow.How do I prevent duplicate audience profiles?
Use numeric X user ID as the unique key. Store usernames as mutable profile fields. Preserve every source relationship in separate evidence rows.How do I keep audience exports current?
Refresh profile fields by numeric X user ID. Keepcollected_at on every
snapshot. Never overwrite historical evidence without retaining its timestamp.
Cost and retry notes
Estimate extraction jobs before running large follower, following, verified
follower, or people search exports.
Direct JSON pages are metered by returned user or tweet rows. Low credit
balances can return smaller pages or
402 insufficient_credits.Treat cursors as opaque route checkpoints. They are not stable profile IDs.
Next steps
Search users
Find seed profiles by topic, name, or handle.
Export followers
Build CSV, JSON, or XLSX follower files for CRM and warehouse handoff.
Get following
Page accounts followed by one seed profile.
Batch users
Enrich up to 100 numeric user IDs in one request.