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

# Retweet Status Check

`POST /check-retweet`

Checks whether a specific user has retweeted a given tweet. The endpoint reviews up to 100 retweets per request. If more retweets need to be checked, a next\_cursor is returned for pagination. The response includes a boolean retweet value (true or false).

Use cases:

Campaign tools verifying retweet participation in giveaways; analytics platforms validating engagement actions by specific users; automation systems triggering rewards based on retweet activity; fraud detection tools checking suspicious engagement patterns; SaaS products enforcing “retweet to unlock” conditions.

## Request body

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

## Response `200`

OK

- VerificationCheckRetweetResp
  - `next_cursor` string
  - `retweet` boolean
  - `user_protected` 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/versions/3554485cbc56/schema)
