corsair.twitterapiio.db.<entity>.search({ data, limit?, offset? }) with the filters listed per entity.
New to Corsair? See database operations, data synchronization, and multi-tenancy.
Communities
Path:twitterapiio.db.communities.search
Searchable filters
| Field | Type | Operators |
|---|---|---|
entity_id | string | equals, contains, startsWith, endsWith, in |
id | string | equals, contains, startsWith, endsWith, in |
name | string | equals, contains, startsWith, endsWith, in |
description | string | equals, contains, startsWith, endsWith, in |
memberCount | number | equals, gt, gte, lt, lte, in |
role | string | equals, contains, startsWith, endsWith, in |
createdAt | string | equals, contains, startsWith, endsWith, in |
isNsfw | boolean | equals |
.search() also accepts limit and offset for pagination. .list() is available on the same path without the .search suffix in code — see database operations.
Lists
Path:twitterapiio.db.lists.search
Searchable filters
| Field | Type | Operators |
|---|---|---|
entity_id | string | equals, contains, startsWith, endsWith, in |
id | string | equals, contains, startsWith, endsWith, in |
name | string | equals, contains, startsWith, endsWith, in |
description | string | equals, contains, startsWith, endsWith, in |
memberCount | number | equals, gt, gte, lt, lte, in |
followerCount | number | equals, gt, gte, lt, lte, in |
createdAt | string | equals, contains, startsWith, endsWith, in |
isPrivate | boolean | equals |
.search() also accepts limit and offset for pagination. .list() is available on the same path without the .search suffix in code — see database operations.
Replies
Path:twitterapiio.db.replies.search
Searchable filters
| Field | Type | Operators |
|---|---|---|
entity_id | string | equals, contains, startsWith, endsWith, in |
id | string | equals, contains, startsWith, endsWith, in |
text | string | equals, contains, startsWith, endsWith, in |
author | string | equals, contains, startsWith, endsWith, in |
createdAt | string | equals, contains, startsWith, endsWith, in |
likeCount | number | equals, gt, gte, lt, lte, in |
retweetCount | number | equals, gt, gte, lt, lte, in |
replyCount | number | equals, gt, gte, lt, lte, in |
quoteCount | number | equals, gt, gte, lt, lte, in |
viewCount | number | equals, gt, gte, lt, lte, in |
bookmarkCount | number | equals, gt, gte, lt, lte, in |
lang | string | equals, contains, startsWith, endsWith, in |
source | string | equals, contains, startsWith, endsWith, in |
isRetweet | boolean | equals |
isQuote | boolean | equals |
isPinned | boolean | equals |
inReplyToStatusId | string | equals, contains, startsWith, endsWith, in |
inReplyToUserId | string | equals, contains, startsWith, endsWith, in |
quotedTweetId | string | equals, contains, startsWith, endsWith, in |
conversationId | string | equals, contains, startsWith, endsWith, in |
url | string | equals, contains, startsWith, endsWith, in |
inReplyToUsername | string | equals, contains, startsWith, endsWith, in |
isLimitedReply | boolean | equals |
.search() also accepts limit and offset for pagination. .list() is available on the same path without the .search suffix in code — see database operations.
Trends
Path:twitterapiio.db.trends.search
Searchable filters
| Field | Type | Operators |
|---|---|---|
entity_id | string | equals, contains, startsWith, endsWith, in |
name | string | equals, contains, startsWith, endsWith, in |
tweetVolume | number | equals, gt, gte, lt, lte, in |
url | string | equals, contains, startsWith, endsWith, in |
woeid | number | equals, gt, gte, lt, lte, in |
trendingAt | string | equals, contains, startsWith, endsWith, in |
.search() also accepts limit and offset for pagination. .list() is available on the same path without the .search suffix in code — see database operations.
Tweets
Path:twitterapiio.db.tweets.search
Searchable filters
| Field | Type | Operators |
|---|---|---|
entity_id | string | equals, contains, startsWith, endsWith, in |
id | string | equals, contains, startsWith, endsWith, in |
text | string | equals, contains, startsWith, endsWith, in |
author | string | equals, contains, startsWith, endsWith, in |
createdAt | string | equals, contains, startsWith, endsWith, in |
likeCount | number | equals, gt, gte, lt, lte, in |
retweetCount | number | equals, gt, gte, lt, lte, in |
replyCount | number | equals, gt, gte, lt, lte, in |
quoteCount | number | equals, gt, gte, lt, lte, in |
viewCount | number | equals, gt, gte, lt, lte, in |
bookmarkCount | number | equals, gt, gte, lt, lte, in |
lang | string | equals, contains, startsWith, endsWith, in |
source | string | equals, contains, startsWith, endsWith, in |
isRetweet | boolean | equals |
isQuote | boolean | equals |
isPinned | boolean | equals |
inReplyToStatusId | string | equals, contains, startsWith, endsWith, in |
inReplyToUserId | string | equals, contains, startsWith, endsWith, in |
quotedTweetId | string | equals, contains, startsWith, endsWith, in |
conversationId | string | equals, contains, startsWith, endsWith, in |
.search() also accepts limit and offset for pagination. .list() is available on the same path without the .search suffix in code — see database operations.
Users
Path:twitterapiio.db.users.search
Searchable filters
| Field | Type | Operators |
|---|---|---|
entity_id | string | equals, contains, startsWith, endsWith, in |
id | string | equals, contains, startsWith, endsWith, in |
userName | string | equals, contains, startsWith, endsWith, in |
name | string | equals, contains, startsWith, endsWith, in |
followerCount | number | equals, gt, gte, lt, lte, in |
followingCount | number | equals, gt, gte, lt, lte, in |
profilePicture | string | equals, contains, startsWith, endsWith, in |
coverPicture | string | equals, contains, startsWith, endsWith, in |
description | string | equals, contains, startsWith, endsWith, in |
location | string | equals, contains, startsWith, endsWith, in |
isBlueVerified | boolean | equals |
isGovernmentVerified | boolean | equals |
favouritesCount | number | equals, gt, gte, lt, lte, in |
statusesCount | number | equals, gt, gte, lt, lte, in |
mediaCount | number | equals, gt, gte, lt, lte, in |
createdAt | string | equals, contains, startsWith, endsWith, in |
isProtected | boolean | equals |
isSuspended | boolean | equals |
isUnavailable | boolean | equals |
website | string | equals, contains, startsWith, endsWith, in |
.search() also accepts limit and offset for pagination. .list() is available on the same path without the .search suffix in code — see database operations.