---
title: "Check Retweet"
method: POST
path: "/check-retweet"
tags: ["Verification"]
---

# Check Retweet

`POST /check-retweet`

Checks whether a user has retweeted a given tweet. The endpoint scans up to 100 retweets per request. If the tweet has more retweets than that, a `next_cursor` is returned to continue checking. Identify the user with `username`, `user_link`, or `user_id`.

## Request body

- VerificationCheckRetweetReq
  - `next_cursor` string
  - `tweet_link` string
  - `user_id` string
  - `user_link` string
  - `username` string

## Response `200`

OK

- VerificationCheckRetweetResp
  - `next_cursor` string — Cursor for checking more retweets if needed.
  - `retweet` boolean — `true` if the user has retweeted the tweet.
  - `user_protected` boolean — `true` if the checked user's account is protected.

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not Found
- `429` — Too Many Requests
- `500` — Internal Server Error

---

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