---
title: "Verify User Retweeted a Tweet"
method: GET
path: "/twitter/tweets/{tweet_id}/retweeted_by/{user_id}"
tags: ["Social Actions API"]
---

# Verify User Retweeted a Tweet

`GET /twitter/tweets/{tweet_id}/retweeted_by/{user_id}`

This endpoint provides a convenient way to check if a user retweeted a tweet identified by tweet_id. This will recursively retrieve all users who recently retweeted a tweet and check if the user_id is present among the retrieved users.

## Path parameters

- `tweet_id` string, required
- `user_id` string, required

## Response `200`

Request succeeded

- UserRetweetedResponse
  - `status` string, required
  - `source_user_id` string, required — The string representation of the unique identifier for User.
  - `target_tweet_id` string, required — The string representation of the unique identifier for the Tweet being retweeted.
  - `is_retweeted` boolean, required — Indicates whether user identified by source_user_id has retweeted the Tweet= identified by target_tweet_id.
  - `retweeters_checked_count` integer, required — Deprecated. Currently returns 'null'

## Other responses

- `402` — Payment required - not enough credits to perform this request
- `422` — Validation failed (e.g. tweet_id or user_id is not provided or in invalid format)
- `500` — API internal error, typically means that SocialData API failed to obtain the requested information. Retry may succeed

## Changes

- **2025-03-12** `73745ce76c49` — 1 breaking, 6 info
  - the response's body type changed from no type to `object` for status `200`
  - removed `#/components/schemas/UserRetweetedStatus, #/components/schemas/ErrorResponse` from the response body `oneOf` list for the response status `200`
  - added the required property `is_retweeted` to the response with the `200` status
  - added the required property `retweeters_checked_count` to the response with the `200` status
  - …3 more

[Change history](https://skmtc.dev/socialdata-api/apis/socialdata-api-reference/changes/twitter/tweets/:tweet_id/retweeted_by/:user_id/get.md)

---

[API](https://skmtc.dev/socialdata-api/apis/socialdata-api-reference.md) · [All operations](https://skmtc.dev/socialdata-api/apis/socialdata-api-reference/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/socialdata-api/socialdata-api-reference/revisions/a898522f71ac/schema)
