# X Community Tweets API (https://www.socialcrawl.dev/platforms/twitter/community-tweets) > Returns recent tweets posted in a Twitter/X community. Each tweet includes text, engagement metrics, and author info. TL;DR: `GET /v1/twitter/community/tweets` costs 1 credit per call and returns SocialCrawl's unified JSON schema. Single x-api-key auth, 100 free credits on signup. ## Parameters | Parameter | Required | Description | | --- | --- | --- | | `url` | yes | Full URL of the Twitter/X community | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/twitter/community/tweets?url=https%3A%2F%2Fx.com%2Fi%2Fcommunities%2F1234567890" \ -H "x-api-key: sc_YOUR_API_KEY" ``` ## FAQ ### How do I list tweets posted in an X community? Send a GET request to /v1/twitter/community/tweets with the full community URL in the url parameter. SocialCrawl returns the recent tweets posted in that community with full text, engagement metrics, media, and author info. ### What data comes back per community tweet? Each tweet returns tweet ID, full text, like count, retweet count, reply count, media URLs, author handle, author display name, and creation timestamp. The schema is identical to the user tweets endpoint for consistent integration. ### Does this pair with the community endpoint? Yes. Use /v1/twitter/community for metadata (name, members, rules) and /v1/twitter/community/tweets for recent posts. Together they map a community's shape and activity with two requests and two credits. ### How much does this endpoint cost? One credit per request on the standard tier. New accounts get 100 free credits with no credit card required. You pay only for the requests you make — no monthly subscription, no rate limits, and no platform-specific surcharges. ### Can I monitor a community over time? Yes. Poll the endpoint on your own schedule (hourly, daily, weekly) and dedupe by tweet ID. SocialCrawl returns the most recent tweets each call, so you can build community activity dashboards or brand monitoring feeds directly. See the full X API: https://www.socialcrawl.dev/platforms/twitter ## Pricing - Standard endpoints: 1 credit per call - Advanced endpoints: 5 credits per call - Premium endpoints: 10 credits per call - 100 free credits on signup, no credit card required. Cached responses cost 0 credits. Credit packs never expire. - Full pricing: https://www.socialcrawl.dev/pricing ## Explore with AI Questions this API answers, phrased for an AI assistant: - How to fetch tweets inside an X community - Monitor X community activity with an API