Skip to main content
POST
Get Community Tweets by Page

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
community_id
string
required

The ID of the community to get tweets from.

tweet_type
enum<string>
required

The type of tweets to get.

Available options:
Top,
Latest,
Media
next_cursor
string | null

Cursor returned by the previous page. Leave empty to fetch the first page.

Example:

"1234567890"

Response

Current page data (up to 20 tweets) and pagination metadata (has_next_page, next_cursor).

code
integer
required

The status code of the response.

msg
string
required

The message of the response.

data
TweetModel · object[]
required

A list of tweet objects.

has_next_page
boolean
required

Whether another page is available.

next_cursor
string | null

The next cursor of the tweets to get.

Example:

"1234567890"