Request
The username of the user (without @ symbol)
Your API key for authentication
Response
Username without @ symbol
Number of users they follow
Number of lists the user is on
Whether the account is verified
Whether tweets are protected
Array of pinned tweet IDs
curl --request GET \
--url https://api.corebot.app/v1/users/by/username/elonmusk \
--header 'X-API-Key: your_api_key_here'
{
"id": "44196397",
"username": "elonmusk",
"name": "Elon Musk",
"description": "CEO of SpaceX and Tesla",
"profile_image_url": "https://pbs.twimg.com/profile_images/123/456_normal.jpg",
"profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/123456789",
"followers_count": 170234567,
"following_count": 543,
"tweet_count": 28943,
"listed_count": 100000,
"verified": true,
"created_at": "Tue Jun 02 20:12:29 +0000 2009",
"location": "Texas",
"url": "https://t.co/abc123",
"protected": false,
"pinned_tweet_ids": ["1234567890"]
}