Realm-Members
Realms
Currencies
Shared Currency
- GETGet all the pending requests for a realm (not by currency)
- POSTShare a currency with another realm
- POSTAccept a pending shared currency
- POSTReject a pending shared currency
- GETList all child realms that use a parent's currency
- DELUn-share a currency from a child realm
- DELRemove a shared currency from a child realm
Twitter-Data
Web3-Data-Collections
Web3-Data-Wallets
Web3-Data-Nfts
Web3-Data-Tokens
Web3-Activations
Web3-Activations-Configs
Twitter-Data
Get tweets by user ID
GET
/
api
/
v1
/
twitter-data
/
user
/
{userId}
/
tweets
Copy
curl --request GET \
--url https://api.drip.re/api/v1/twitter-data/user/{userId}/tweets \
--header 'Authorization: Bearer <token>'
Copy
{
"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
}
}
],
"meta": {
"hasNextPage": false,
"hasPreviousPage": false,
"startCursor": "<string>",
"endCursor": "<string>",
"totalCount": 123
}
}
Authorizations
API Key
Path Parameters
Response
200
application/json
Default Response
The response is of type any
.
Copy
curl --request GET \
--url https://api.drip.re/api/v1/twitter-data/user/{userId}/tweets \
--header 'Authorization: Bearer <token>'
Copy
{
"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
}
}
],
"meta": {
"hasNextPage": false,
"hasPreviousPage": false,
"startCursor": "<string>",
"endCursor": "<string>",
"totalCount": 123
}
}
Assistant
Responses are generated using AI and may contain mistakes.