Skip to main content
POST
/
check-quoted
Check Quote or Retweet
curl --request POST \
  --url https://api.sorsa.io/v3/check-quoted \
  --header 'ApiKey: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "tweet_link": "https://twitter.com/TweetScout_io/status/1782368585664626774",
  "user_id": "44196397",
  "user_link": "https://twitter.com/elonmusk",
  "username": "elonmusk"
}
'
{
  "date": "2024-04-27 06:43:09",
  "status": "quoted",
  "text": "Quote text",
  "user_protected": false
}

Authorizations

ApiKey
string
header
required

Body

application/json

tweet link, user link, username or user_id

Example:

"https://twitter.com/TweetScout_io/status/1782368585664626774"

user_id
string
Example:

"44196397"

Example:

"https://twitter.com/elonmusk"

username
string
Example:

"elonmusk"

Response

OK

date
string

Date of the interaction (if found).

Example:

"2024-04-27 06:43:09"

status
string

Interaction type: quoted, retweet, or not_found.

Example:

"quoted"

text
string

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

Example:

"Quote text"

user_protected
boolean

true if the checked user's account is protected.

Example:

false