Get tweet retweeters
GET
/twitter/tweet/retweeters
const url = 'https://api.relayxapi.com/twitter/tweet/retweeters?tweetId=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/tweet/retweeters?tweetId=example' \ --header 'X-API-Key: <api-key>'import requests
res = requests.get( "https://api.relayxapi.com/twitter/tweet/retweeters", params={"tweetId": "example"}, headers={"X-API-Key": "<api-key>"},)print(res.json())List the accounts that reposted a post.
Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters”tweetId
required
Tweetid
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
{ "users": [ { "type": "user", "userName": "example_user15", "url": "https://x.com/example_user15", "id": "1000000000000000015", "name": "Example User 15", "isBlueVerified": false, "description": "Example bio.", "location": "", "followers": 107, "following": 132, "statusesCount": null, "createdAt": "Tue Jun 01 11:01:53 +0000 2021", "profilePicture": "https://pbs.twimg.com/profile_images/example/avatar_normal.jpg", "coverPicture": null, "canDm": false, "pinnedTweetIds": [], "profile_bio": null }, { "type": "user", "userName": "example_user16", "url": "https://x.com/example_user16", "id": "1000000000000000016", "name": "Example User 16", "isBlueVerified": false, "description": "Example bio.", "location": "", "followers": 2, "following": 16, "statusesCount": null, "createdAt": "Fri Mar 20 19:03:45 +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": "HBaAgICe6+PDjTQAAA=="}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" } ]}