Skip to main content
POST
/
mentions
Search for Mentions of account
curl --request POST \
  --url https://api.sorsa.io/v3/mentions \
  --header 'ApiKey: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "min_likes": 100,
  "min_replies": 100,
  "min_retweets": 100,
  "next_cursor": "JKHSJFHADUYJKSDy2y3u123",
  "order": "popular",
  "query": "elonmusk",
  "since_date": "2026-01-01",
  "until_date": "2026-01-01"
}
'
{
  "next_cursor": "<string>",
  "tweets": [
    {
      "bookmark_count": 123,
      "conversation_id_str": "<string>",
      "created_at": "<string>",
      "entities": [
        {
          "link": "<string>",
          "preview": "<string>",
          "type": "<string>"
        }
      ],
      "full_text": "<string>",
      "id": "<string>",
      "in_reply_to_tweet_id": "<string>",
      "in_reply_to_username": "<string>",
      "is_quote_status": true,
      "is_replies_limited": true,
      "is_reply": true,
      "lang": "<string>",
      "likes_count": 123,
      "quote_count": 123,
      "quoted_status": "<unknown>",
      "reply_count": 123,
      "retweet_count": 123,
      "retweeted_status": "<unknown>",
      "user": {
        "bio_urls": [
          "<string>"
        ],
        "can_dm": true,
        "created_at": "<string>",
        "description": "<string>",
        "display_name": "<string>",
        "favourites_count": 123,
        "followers_count": 123,
        "followings_count": 123,
        "id": "<string>",
        "location": "<string>",
        "media_count": 123,
        "pinned_tweet_ids": [
          "<string>"
        ],
        "possibly_sensitive": true,
        "profile_background_image_url": "<string>",
        "profile_image_url": "<string>",
        "protected": true,
        "tweets_count": 123,
        "username": "<string>",
        "verified": true
      },
      "view_count": 123
    }
  ]
}

Authorizations

ApiKey
string
header
required

Body

application/json

query required, next_cursor optional

min_likes
integer
Example:

100

min_replies
integer
Example:

100

min_retweets
integer
Example:

100

next_cursor
string
Example:

"JKHSJFHADUYJKSDy2y3u123"

order
string
Example:

"popular"

query
string
Example:

"elonmusk"

since_date
string
Example:

"2026-01-01"

until_date
string
Example:

"2026-01-01"

Response

OK

next_cursor
string
tweets
object[]