v3

latestOpenAPI 3.0.32026-08-02415689.9 KB
Verification

Check Quote or Retweet

Checks whether a user has quoted or retweeted a given tweet. Returns a status field with one of three values: quoted, retweet, or not_found. If a quote or retweet is found, the response also includes the interaction date and the quote text (when applicable). Identify the user with username, user_link, or user_id.

post/check-quoted

Request body

tweet_linkstring
user_idstring
user_linkstring
usernamestring

Example request

{
  "tweet_link": "https://twitter.com/TweetScout_io/status/1782368585664626774",
  "user_id": "44196397",
  "user_link": "https://twitter.com/elonmusk",
  "username": "elonmusk"
}

Response

OK

datestring

Date of the interaction (if found).

statusstring

Interaction type: quoted, retweet, or not_found.

textstring

Text of the quote tweet (if status is quoted).

user_protectedboolean

true if the checked user's account is protected.

Example response

{
  "date": "2024-04-27 06:43:09",
  "status": "quoted",
  "text": "Quote text"
}