---
title: "Tweet Retweeters"
method: POST
path: "/retweets"
tags: ["Tweets"]
---

# Tweet Retweeters

`POST /retweets`

Returns the users who retweeted a specific tweet, selected by tweet id. Results are sorted by retweet time in descending order (newest first). If there are more results, you will also receive a next\_cursor to load the next page. Each user item includes basic profile info like username, id, name, avatar, bio, and follower stats.

Use cases:

Marketing teams finding accounts that reshared a campaign post for follow-up and audience research; analytics platforms measuring who amplifies content and building retweeter segments; community managers identifying active supporters and potential ambassadors; research tools exporting retweeter lists for network analysis; developers building “who retweeted this” views with cursor pagination.

## Request body

- TweetsRetweetsReq
  - `next_cursor` string
  - `tweet_link` string

## Response `200`

OK

- CommonUsersResponse
  - `next_cursor` string
  - `users` CommonUser[]
    - `bio_urls` string[]
    - `can_dm` boolean
    - `created_at` string
    - `description` string
    - `display_name` string
    - `favourites_count` integer
    - `followers_count` integer
    - `followings_count` integer
    - `id` string
    - `location` string
    - `media_count` integer
    - `pinned_tweet_ids` string[]
    - `possibly_sensitive` boolean
    - `profile_background_image_url` string
    - `profile_image_url` string
    - `protected` boolean
    - `tweets_count` integer
    - `username` string
    - `verified` boolean

## Other responses

- `400` — Bad Request
- `403` — Forbidden
- `404` — Not Found
- `500` — Internal Server Error

---

[API](https://skmtc.net/sorsa/apis/api-sorsa-io-2.md) · [All operations](https://skmtc.net/sorsa/apis/api-sorsa-io-2/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/sorsa/api-sorsa-io-2/revisions/3d7215317ba1/schema)
