# X Community API (https://www.socialcrawl.dev/platforms/twitter/community) > Returns information about a Twitter/X community including name, description, member count, rules, and creation date. TL;DR: `GET /v1/twitter/community` 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?url=https%3A%2F%2Fx.com%2Fi%2Fcommunities%2F1926186499399139650" \ -H "x-api-key: sc_YOUR_API_KEY" ``` ## FAQ ### How do I get Twitter community data with an API? Send a GET request to /v1/twitter/community with the full X community URL in the url parameter. SocialCrawl returns the community name, description, member count, rules, creation date, and visibility settings in a unified JSON schema. ### What fields does the community endpoint return? Community name, description, member count, rules list, creation date, privacy setting (open or invite-only), creator handle, and category. Everything visible on the community's public landing page gets normalized into the unified schema. ### Can I pair this with the community tweets endpoint? Yes. Use /v1/twitter/community for metadata and /v1/twitter/community/tweets for the recent tweets posted in that community. Together they give you a full picture of a community's activity and membership in two calls. ### How much does the community endpoint cost? One credit per request on the standard tier. New accounts get 100 free credits with no credit card required, so you can pull around 100 X communities before paying anything. No minimum monthly commitment and no rate limits. ### Does it work for private or invite-only communities? The endpoint returns whatever is publicly visible on the community landing page. For open communities you get full data; for invite-only communities you typically get the name, description, and member count, but not the post feed. 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 get X community metadata by URL - Twitter community scraper API with member count