v1

latestOpenAPI 3.0.32026-07-213841124.9 KB
Verification

Quote Status Check

Checks whether a specific user has quoted or retweeted a given tweet. You provide the required user and tweet identifiers, and the endpoint returns a status value (quoted, retweet, or not_found). If a quote or retweet is found, the response also includes the related date and quote text (if available).

Use cases:

Campaign tools verifying repost or quote participation in promotions; analytics platforms validating different types of engagement; automation systems triggering actions based on quote vs retweet behavior; fraud detection tools checking suspicious repost activity; SaaS products enforcing “quote or retweet to qualify” conditions.

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
statusstring
textstring
user_protectedboolean

Example response

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