Get an X Community (info, stats, rules, creator)
curl --request GET \
--url https://api.scraperize.com/v1/twitter/community \
--header 'x-api-key: <api-key>'import requests
url = "https://api.scraperize.com/v1/twitter/community"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.scraperize.com/v1/twitter/community', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.scraperize.com/v1/twitter/community",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.scraperize.com/v1/twitter/community"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.scraperize.com/v1/twitter/community")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.scraperize.com/v1/twitter/community")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": {
"community": {
"id": "1433869915434278912",
"url": "https://x.com/i/communities/1433869915434278912",
"name": "X Communities Feedback",
"description": "A place to discuss all things related to 𝕏 Communities! The team will share updates, request feedback, and answer any questions you may have.",
"memberCount": 547199,
"createdAtMs": 1630696202524,
"createdAt": "2021-09-03T19:10:02.524Z",
"isNsfw": false,
"joinPolicy": "Open",
"topic": "X Official",
"banner": {
"url": "https://pbs.twimg.com/community_banner_img/1846987838937878529/9NWOzlgp?format=jpg&name=orig",
"width": 1198,
"height": 479
},
"creator": {
"id": "1433894099178774532",
"name": "Communities",
"screenName": "HiCommunities",
"url": "https://x.com/HiCommunities",
"bio": null,
"avatarUrl": "https://pbs.twimg.com/profile_images/1683508943228731394/Wyjsoi11_normal.jpg",
"avatarUrlHd": "https://pbs.twimg.com/profile_images/1683508943228731394/Wyjsoi11_400x400.jpg",
"followers": null,
"following": null,
"tweetCount": null,
"verified": null,
"verifiedType": null,
"protected": null,
"profileImageShape": "Square",
"professionalCategory": null
},
"rules": [
{
"id": "1788316047352717315",
"name": "Stay on topic.",
"description": "This is a community for, well, Communities, so keep feedback, questions, and thoughts about that. For anything else, visit our Help Center or @Support ."
},
{
"id": "1435329143667761155",
"name": "Be kind.",
"description": "This will all be way more fun if everyone is nice to each other. You can disagree on something while not making it personal."
},
{
"id": "1435329143667712003",
"name": "No spam.",
"description": "No one likes seeing the same message posted over and over."
}
],
"membersFacepile": [
{
"id": "1433894099178774532",
"name": "Communities",
"screenName": "HiCommunities",
"url": "https://x.com/HiCommunities",
"bio": null,
"avatarUrl": "https://pbs.twimg.com/profile_images/1683508943228731394/Wyjsoi11_normal.jpg",
"avatarUrlHd": "https://pbs.twimg.com/profile_images/1683508943228731394/Wyjsoi11_400x400.jpg",
"followers": null,
"following": null,
"tweetCount": null,
"verified": null,
"verifiedType": null,
"protected": null,
"profileImageShape": "Square",
"professionalCategory": null
},
{
"id": "1372635343544025088",
"name": null,
"screenName": "Dongwook",
"url": "https://x.com/Dongwook",
"bio": null,
"avatarUrl": "https://pbs.twimg.com/profile_images/1821625188829544448/r86n-JVS_normal.jpg",
"avatarUrlHd": "https://pbs.twimg.com/profile_images/1821625188829544448/r86n-JVS_400x400.jpg",
"followers": null,
"following": null,
"tweetCount": null,
"verified": null,
"verifiedType": null,
"protected": null,
"profileImageShape": "Circle",
"professionalCategory": null
},
{
"id": "1173276871",
"name": null,
"screenName": "ishanrc",
"url": "https://x.com/ishanrc",
"bio": null,
"avatarUrl": "https://pbs.twimg.com/profile_images/1641831032725856259/lyUEmUP6_normal.jpg",
"avatarUrlHd": "https://pbs.twimg.com/profile_images/1641831032725856259/lyUEmUP6_400x400.jpg",
"followers": null,
"following": null,
"tweetCount": null,
"verified": null,
"verifiedType": null,
"protected": null,
"profileImageShape": "Circle",
"professionalCategory": null
}
]
},
"fetchedAt": "2026-09-14T12:13:11.261Z"
},
"meta": {
"requestId": "req_8f0c2b7e-1a2b-4c3d-9e8f-0a1b2c3d4e5f",
"creditsCharged": 1,
"creditsRemaining": 4999,
"cached": false
}
}{
"error": {
"code": "UNAUTHORIZED",
"message": "API key required — pass it in the `x-api-key` header.",
"requestId": "req_8f0c2b7e-1a2b-4c3d-9e8f-0a1b2c3d4e5f"
}
}{
"error": {
"code": "INSUFFICIENT_CREDITS",
"message": "This request costs 1 credit, but your balance is 0. Top up to continue.",
"requestId": "req_8f0c2b7e-1a2b-4c3d-9e8f-0a1b2c3d4e5f"
}
}{
"error": {
"code": "NOT_FOUND",
"message": "The requested content was not found (it may not exist, be deleted, or be private).",
"requestId": "req_8f0c2b7e-1a2b-4c3d-9e8f-0a1b2c3d4e5f"
}
}{
"error": {
"code": "VALIDATION_ERROR",
"message": "Request validation failed",
"requestId": "req_8f0c2b7e-1a2b-4c3d-9e8f-0a1b2c3d4e5f",
"details": [
{
"path": "url",
"message": "Required"
}
]
}
}{
"error": {
"code": "RATE_LIMITED",
"message": "Rate limit exceeded — max 100 requests per 60s. Retry in ~30s.",
"requestId": "req_8f0c2b7e-1a2b-4c3d-9e8f-0a1b2c3d4e5f"
}
}{
"error": {
"code": "UPSTREAM_BLOCKED",
"message": "The source was temporarily unavailable. Please try again shortly.",
"requestId": "req_8f0c2b7e-1a2b-4c3d-9e8f-0a1b2c3d4e5f"
}
}Twitter
Get an X Community (info, stats, rules, creator)
Fetches a public X Community (x.com/i/communities/<id>, logged-out) and returns its info, stats, rules, topic, creator, and a member facepile — NOT the community tweets (a separate endpoint).
GET
/
v1
/
twitter
/
community
Get an X Community (info, stats, rules, creator)
curl --request GET \
--url https://api.scraperize.com/v1/twitter/community \
--header 'x-api-key: <api-key>'import requests
url = "https://api.scraperize.com/v1/twitter/community"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.scraperize.com/v1/twitter/community', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.scraperize.com/v1/twitter/community",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.scraperize.com/v1/twitter/community"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.scraperize.com/v1/twitter/community")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.scraperize.com/v1/twitter/community")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": {
"community": {
"id": "1433869915434278912",
"url": "https://x.com/i/communities/1433869915434278912",
"name": "X Communities Feedback",
"description": "A place to discuss all things related to 𝕏 Communities! The team will share updates, request feedback, and answer any questions you may have.",
"memberCount": 547199,
"createdAtMs": 1630696202524,
"createdAt": "2021-09-03T19:10:02.524Z",
"isNsfw": false,
"joinPolicy": "Open",
"topic": "X Official",
"banner": {
"url": "https://pbs.twimg.com/community_banner_img/1846987838937878529/9NWOzlgp?format=jpg&name=orig",
"width": 1198,
"height": 479
},
"creator": {
"id": "1433894099178774532",
"name": "Communities",
"screenName": "HiCommunities",
"url": "https://x.com/HiCommunities",
"bio": null,
"avatarUrl": "https://pbs.twimg.com/profile_images/1683508943228731394/Wyjsoi11_normal.jpg",
"avatarUrlHd": "https://pbs.twimg.com/profile_images/1683508943228731394/Wyjsoi11_400x400.jpg",
"followers": null,
"following": null,
"tweetCount": null,
"verified": null,
"verifiedType": null,
"protected": null,
"profileImageShape": "Square",
"professionalCategory": null
},
"rules": [
{
"id": "1788316047352717315",
"name": "Stay on topic.",
"description": "This is a community for, well, Communities, so keep feedback, questions, and thoughts about that. For anything else, visit our Help Center or @Support ."
},
{
"id": "1435329143667761155",
"name": "Be kind.",
"description": "This will all be way more fun if everyone is nice to each other. You can disagree on something while not making it personal."
},
{
"id": "1435329143667712003",
"name": "No spam.",
"description": "No one likes seeing the same message posted over and over."
}
],
"membersFacepile": [
{
"id": "1433894099178774532",
"name": "Communities",
"screenName": "HiCommunities",
"url": "https://x.com/HiCommunities",
"bio": null,
"avatarUrl": "https://pbs.twimg.com/profile_images/1683508943228731394/Wyjsoi11_normal.jpg",
"avatarUrlHd": "https://pbs.twimg.com/profile_images/1683508943228731394/Wyjsoi11_400x400.jpg",
"followers": null,
"following": null,
"tweetCount": null,
"verified": null,
"verifiedType": null,
"protected": null,
"profileImageShape": "Square",
"professionalCategory": null
},
{
"id": "1372635343544025088",
"name": null,
"screenName": "Dongwook",
"url": "https://x.com/Dongwook",
"bio": null,
"avatarUrl": "https://pbs.twimg.com/profile_images/1821625188829544448/r86n-JVS_normal.jpg",
"avatarUrlHd": "https://pbs.twimg.com/profile_images/1821625188829544448/r86n-JVS_400x400.jpg",
"followers": null,
"following": null,
"tweetCount": null,
"verified": null,
"verifiedType": null,
"protected": null,
"profileImageShape": "Circle",
"professionalCategory": null
},
{
"id": "1173276871",
"name": null,
"screenName": "ishanrc",
"url": "https://x.com/ishanrc",
"bio": null,
"avatarUrl": "https://pbs.twimg.com/profile_images/1641831032725856259/lyUEmUP6_normal.jpg",
"avatarUrlHd": "https://pbs.twimg.com/profile_images/1641831032725856259/lyUEmUP6_400x400.jpg",
"followers": null,
"following": null,
"tweetCount": null,
"verified": null,
"verifiedType": null,
"protected": null,
"profileImageShape": "Circle",
"professionalCategory": null
}
]
},
"fetchedAt": "2026-09-14T12:13:11.261Z"
},
"meta": {
"requestId": "req_8f0c2b7e-1a2b-4c3d-9e8f-0a1b2c3d4e5f",
"creditsCharged": 1,
"creditsRemaining": 4999,
"cached": false
}
}{
"error": {
"code": "UNAUTHORIZED",
"message": "API key required — pass it in the `x-api-key` header.",
"requestId": "req_8f0c2b7e-1a2b-4c3d-9e8f-0a1b2c3d4e5f"
}
}{
"error": {
"code": "INSUFFICIENT_CREDITS",
"message": "This request costs 1 credit, but your balance is 0. Top up to continue.",
"requestId": "req_8f0c2b7e-1a2b-4c3d-9e8f-0a1b2c3d4e5f"
}
}{
"error": {
"code": "NOT_FOUND",
"message": "The requested content was not found (it may not exist, be deleted, or be private).",
"requestId": "req_8f0c2b7e-1a2b-4c3d-9e8f-0a1b2c3d4e5f"
}
}{
"error": {
"code": "VALIDATION_ERROR",
"message": "Request validation failed",
"requestId": "req_8f0c2b7e-1a2b-4c3d-9e8f-0a1b2c3d4e5f",
"details": [
{
"path": "url",
"message": "Required"
}
]
}
}{
"error": {
"code": "RATE_LIMITED",
"message": "Rate limit exceeded — max 100 requests per 60s. Retry in ~30s.",
"requestId": "req_8f0c2b7e-1a2b-4c3d-9e8f-0a1b2c3d4e5f"
}
}{
"error": {
"code": "UPSTREAM_BLOCKED",
"message": "The source was temporarily unavailable. Please try again shortly.",
"requestId": "req_8f0c2b7e-1a2b-4c3d-9e8f-0a1b2c3d4e5f"
}
}Authorizations
Your API key. Send it in the x-api-key header (or Authorization: Bearer <key>). Create and manage keys from your dashboard.
Query Parameters
Community URL, e.g. https://x.com/i/communities/1433869915434278912
Optional. Return a cached result if one this age or newer exists — served for 0 credits with meta.cached=true and meta.cachedAt. Otherwise a fresh scrape runs (1 credit) and refreshes the cache. Omit to always scrape fresh.
Available options:
1d, 3d, 7d, 14d, 30d