GET
/
api
/
v1
/
twitter-data
/
tweets
/
{tweetId}
/
details
curl --request GET \
  --url https://api.drip.re/api/v1/twitter-data/tweets/{tweetId}/details \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "<string>",
    "text": "<string>",
    "createdAt": "2023-11-07T05:31:56Z",
    "lang": "<string>",
    "possiblySensitive": true,
    "media": [
      {
        "id": "<string>",
        "type": "<string>",
        "url": "<string>",
        "mediaUrlHttps": "<string>",
        "displayUrl": "<string>",
        "expandedUrl": "<string>"
      }
    ],
    "urls": [
      {
        "url": "<string>",
        "displayUrl": "<string>",
        "expandedUrl": "<string>"
      }
    ],
    "replyTo": {
      "isReply": true,
      "tweetId": "<string>",
      "accountId": "<string>",
      "screenName": "<string>"
    },
    "quoteTo": {
      "isQuote": true,
      "tweetId": "<string>",
      "url": "<string>",
      "expandedUrl": "<string>",
      "displayUrl": "<string>"
    },
    "communityTo": {
      "isCommunity": true,
      "communityId": "<string>",
      "name": "<string>",
      "description": "<string>",
      "memberCount": 123,
      "joinPolicy": "<string>"
    },
    "user": {
      "id": "<string>",
      "screenName": "<string>",
      "name": "<string>",
      "description": "<string>",
      "joinedTwitterAt": "2023-11-07T05:31:56Z",
      "isBlueVerified": true,
      "defaultProfile": true,
      "defaultProfileImage": true,
      "pinnedTweetIds": [
        "<string>"
      ],
      "location": "<string>",
      "possiblySensitive": true,
      "url": "<string>",
      "profileBannerUrl": "<string>",
      "profileImageUrl": "<string>",
      "profileUrl": {
        "url": "<string>",
        "expandedUrl": "<string>",
        "displayUrl": "<string>"
      },
      "stats": {
        "totalTweets": 123,
        "totalFollowers": 123,
        "totalFollowing": 123
      },
      "professional": {
        "professionalType": "<string>",
        "restId": "<string>",
        "categories": [
          {
            "id": 123,
            "name": "<string>",
            "iconName": "<string>"
          }
        ]
      },
      "tipjar": {
        "isEnabled": true,
        "ethereumHandle": "<string>",
        "bitcoinHandle": "<string>"
      },
      "affiliatesHighlightedLabel": {
        "badgeUrl": "<string>",
        "description": "<string>",
        "externalUrl": "<string>",
        "userLabelDisplayType": "<string>",
        "userLabelType": "<string>"
      },
      "lastSyncedAt": "2023-11-07T05:31:56Z"
    },
    "stats": {
      "bookmarkCount": 123,
      "favoriteCount": 123,
      "quoteCount": 123,
      "replyCount": 123,
      "retweetCount": 123,
      "viewCount": 123
    }
  }
}

Authorizations

Authorization
string
header
required

API Key

Path Parameters

tweetId
string
required

Query Parameters

includeUser
boolean
default:false
includeStats
boolean
default:false

Response

200
application/json

Default Response

The response is of type any.