Skip to main content
GET
/
x
/
communities
/
{id}
/
tweets
Get community tweets
curl --request GET \
  --url https://api.example.com/x/communities/{id}/tweets \
  --header 'x-api-key: <x-api-key>'
1 credit per tweet returned · All plans from $0.00012/credit
curl https://xquik.com/api/v1/x/communities/1234567890/tweets \
  -H "x-api-key: xq_YOUR_KEY_HERE" | jq

Path parameters

id
string
required
Community ID (numeric string).

Query parameters

cursor
string
Pagination cursor from a previous response. Omit for the first page.

Headers

x-api-key
string
required
Your API key. Session cookie authentication is also supported.

Response

tweets
object[]
Array of community tweets.
has_next_page
boolean
Whether more results are available.
next_cursor
string
Cursor for the next page. Pass as the cursor query parameter.
{
  "tweets": [
    {
      "id": "1893456789012345678",
      "text": "Community post content",
      "createdAt": "2026-02-24T10:00:00.000Z",
      "likeCount": 150,
      "retweetCount": 42,
      "replyCount": 10,
      "viewCount": 12400,
      "author": {
        "id": "987654321",
        "username": "xquikcom",
        "name": "Xquik",
        "verified": true
      }
    }
  ],
  "has_next_page": true,
  "next_cursor": "DAACCgACGE..."
}
Next steps: Community Info for community details, or Community Members to list members.