Get verified followers
GET
/twitter/user/verifiedFollowers
const url = 'https://api.relayxapi.com/twitter/user/verifiedFollowers?user_id=example';const options = { method: 'GET', headers: { 'X-API-Key': '<api-key>' },};
try { const res = await fetch(url, options); const data = await res.json(); console.log(data);} catch (err) { console.error(err);}curl --request GET \ --url 'https://api.relayxapi.com/twitter/user/verifiedFollowers?user_id=example' \ --header 'X-API-Key: <api-key>'import requests
res = requests.get( "https://api.relayxapi.com/twitter/user/verifiedFollowers", params={"user_id": "example"}, headers={"X-API-Key": "<api-key>"},)print(res.json())Page through only the verified accounts that follow a user — useful for gauging reach among notable accounts.
Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters”user_id
required
User Id
string
cursor
Cursor
string
Header Parameters
Section titled “Header Parameters”x-api-key
X-Api-Key
string
Responses
Section titled “ Responses ”Successful Response
Media typeapplication/json
Example
{ "followers": [ { "type": "user", "userName": "example_user5", "url": "https://x.com/example_user5", "id": "1000000000000000005", "name": "Example User 5", "isBlueVerified": true, "description": "Example bio.", "location": "", "followers": 1170, "following": 2147, "statusesCount": null, "createdAt": "Sun Oct 11 14:35:51 +0000 2009", "profilePicture": "https://pbs.twimg.com/profile_images/example/avatar_normal.jpg", "coverPicture": null, "canDm": true, "pinnedTweetIds": [], "profile_bio": null }, { "type": "user", "userName": "example_user6", "url": "https://x.com/example_user6", "id": "1000000000000000006", "name": "Example User 6", "isBlueVerified": true, "description": "Example bio.", "location": "", "followers": 3, "following": 50, "statusesCount": null, "createdAt": "Sun Sep 20 14:03:37 +0000 2026", "profilePicture": "https://pbs.twimg.com/profile_images/example/avatar_normal.jpg", "coverPicture": null, "canDm": false, "pinnedTweetIds": [], "profile_bio": null } ], "status": "success", "message": "", "has_next_page": true, "next_cursor": "1877310805517044460|2103482120771993578"}Validation Error
Media typeapplication/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationErrorobject
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
Examplegenerated
{ "detail": [ { "loc": [ "example" ], "msg": "example", "type": "example" } ]}