Skip to main content
Endpoint: GET /info-batch Description This powerful endpoint allows you to retrieve detailed profile information for multiple Twitter/X accounts in a single request. By providing a list of usernames (handles) or User IDs, you get structured data for each account, including follower counts, bios, verification status, and profile images. Who is it for?
  • Data Aggregators: To efficiently update large databases of user profiles without hitting rate limits on individual requests.
  • Campaign Managers: To quickly verify the reach and authenticity of a list of potential influencers or partners.
  • Developers: To populate “following” or “member” cards in your application UI by fetching batch data.
Use Cases
  • Resolving a list of 50 usernames into their unique Twitter IDs and current stats.
  • Refreshing profile metadata (like avatars and bios) for a community leaderboard.
  • Filtering a large set of users to find those with a specific follower threshold or “Verified” status.
Request Example (Python)
import requests

url = "https://api.sorsa.io/v3/info-batch"
headers = {"ApiKey": "YOUR_API_KEY"}
# You can pass multiple handles or IDs separated by commas
params = {
    "links": "elonmusk,vitalikbuterin,jack" 
}

response = requests.get(url, headers=headers, params=params)
users = response.json() # Returns a list of user objects

for user in users:
    print(f"{user['name']} has {user['followers_count']} followers.")