GET/v1/results

Get Results

Retrieve scraped Twitter profile data

Retrieve scraped Twitter profile data. Each result contains detailed profile information including follower counts, verification status, and profile metadata.

Headers

KeyValueRequired
AuthorizationToken YOUR_API_KEYYes

Core Result Fields

id
integer
Unique result identifier
Example: 53557759
object
string
Always "result"
Example: result
squid
string
Squid that produced this result
Example: 72d18e4c94534b829877bb7c092b1f80
run
string
Run that produced this result
Example: 3ff48bb8ef19426e87fbb3e102dd4531
_json
string
Raw JSON payload from Twitter's API (if json=true)
Example: {...}

Profile Information

name
string
Display name of the user
Example: Elon Musk
screen_name
string
User's handle without the @ symbol
Example: elonmusk
bio
string
User's profile biography text
Example: Mars & Cars...
location
string
User-specified location
Example: Mars
website
string
URL of the user's website
Example: https://tesla.com
created_at
string
Account creation timestamp (ISO 8601)
Example: 2009-06-02T20:12:29Z
internal_id
string
Twitter's internal user identifier
Example: 44196397

Engagement Metrics

followers_count
integer
Total number of followers
Example: 150000000
following_count
integer
Number of accounts the user follows
Example: 500
posts_count
integer
Total number of tweets posted
Example: 25000
favourites_count
integer
Total tweets favorited
Example: 15000
listed_count
integer
Number of public lists user appears in
Example: 50000
media_count
integer
Number of media items tweeted
Example: 1000

Verification & Status

is_blue_verified
boolean
True if the account is Blue Verified
Example: true
possibly_sensitive
boolean
True if content is potentially sensitive
Example: false
super_follow_eligible
boolean
True if eligible for Super Follows
Example: true
creator_subscriptions_count
integer
Number of creator subscriptions
Example: 0

Profile Images

profile_image_url_https
string
HTTPS URL of the profile image
Example: https://pbs.twimg.com/...
profile_banner_url
string
URL of the profile banner image
Example: https://pbs.twimg.com/...
profile_image_shape
string
Shape setting for profile image
Example: Circle

Timestamps

scraping_time
string
When this profile was scraped (ISO 8601)
Example: 2025-07-04T04:08:09.340Z

Parameters

squidstring
Required
Hash of the squid to get results from
Example: 72d18e4c94534b829877bb7c092b1f80
runstring
Optional
Hash of a specific run (optional)
Example: 3ff48bb8ef19426e87fbb3e102dd4531
pageinteger
Optional
Page number (default: 1)
Example: 1
page_sizeinteger
Optional
Results per page (default: 50, max: 100)
Example: 50
Pro Tip

Pro Tip

Use `is_blue_verified` to identify verified accounts in your results.
Pro Tip

Pro Tip

The `_json` field contains the complete raw API response when `json=true` is set in settings.
Note

Note

Some fields like `website` may be empty if the user hasn't provided that information.