Skip to main content
GET
/
x
/
communities
/
{id}
/
tweets
Get community tweets
curl --request GET \
  --url https://xquik.com/api/v1/x/communities/{id}/tweets \
  --header 'x-api-key: <api-key>'

Documentation Index

Fetch the complete documentation index at: https://docs.xquik.com/llms.txt

Use this file to discover all available pages before exploring further.

Requested result counts are upper bounds for paid authenticated calls. When remaining credits cannot cover the full page or ID list, Xquik returns fewer results. If zero paid results are affordable, it returns 402 insufficient_credits.
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

Direct community tweet handoff

Use GET /x/communities/{id}/tweets for community monitoring, content review, post exports, or moderation queues. It creates one row per community tweet. Store community_id, tweet_id, text, author_id, author_username, author_name, author_followers, author_verified, author_profile_picture, created_at, like_count, reply_count, retweet_count, media_urls, and next_cursor.

Community tweet rows

Store one row per post in the community. Keep author fields and engagement counts with the tweet row for review queues and exports.

Next page

Store has_next_page and next_cursor. Only request another page when has_next_page is true.

Default page

Direct calls use the default paid tweet page size. Treat the returned tweets.length as the row count returned for this page.

Saved export

Use community_post_extractor when the workflow needs a saved job with CSV/JSON/XLSX output.

Path parameters

id
string
required
Community ID (numeric string).

Query parameters

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

Which community endpoint?

Community tweets

Use GET /x/communities/{id}/tweets for posts from one known community.

Community tweet search

Use GET /x/communities/tweets for keyword searches across communities.

Community members

Use GET /x/communities/{id}/members for account rows from the same community.

Bulk community jobs

Use Create extraction with community_post_extractor, community_extractor, or community_moderator_explorer when the workflow needs a saved export.

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",
        "followers": 12400,
        "verified": true,
        "profilePicture": "https://pbs.twimg.com/profile_images/example.jpg"
      }
    }
  ],
  "has_next_page": true,
  "next_cursor": "DAACCgACGE..."
}
Next steps: Community Info for community details, or Community Members to list members.
Last modified on May 25, 2026