Get community from X with KonbiniAPI
Returns public metadata for an X community, including description, member count, topic, creator, and banner image.
This API endpoint returns public metadata for an X community, including description, member count, topic, creator, and banner image.
Perfect for
- Data Analytics
- Market Research
- Platform Integration
1. Make the request
const response = await fetch("https://api.konbiniapi.com/v1/x/communities/{communityId}", {
headers: { "Authorization": "Bearer YOUR_API_KEY" }
});
const data = await response.json();
2. Get clean JSON
Response (200 OK)
{
"data": {
"@context": [
"https://www.w3.org/ns/activitystreams#",
"https://konbiniapi.com/ns/social#"
],
"type": "Group",
"id": "https://x.com/i/communities/1669501013441806336",
"url": "https://x.com/i/communities/1669501013441806336",
"entityId": "1669501013441806336",
"name": "Memes",
"summary": "Post the funniest memes you can find!",
"published": "2023-06-16T00:23:54.093Z",
"memberCount": 515319,
"category": "Entertainment",
"tag": [
{
"type": "Tag",
"name": "learnfromkhaby",
"href": "https://x.com/hashtag/learnfromkhaby"
}
],
"rule": [
{
"type": "Document",
"entityId": "1848458992051159411",
"name": "Post memes only",
"content": "Posts should be memes. No unrelated content or spam."
}
],
"attributedTo": {
"type": "Person",
"id": "https://x.com/KhabyLame",
"url": "https://x.com/KhabyLame",
"entityId": "221838349",
"preferredUsername": "KhabyLame",
"name": "Khabane Lame",
"icon": {
"type": "Image",
"url": "https://pbs.twimg.com/amplify_video_thumb/2024515147692195840/img/t8ePmit3Wst1hxAM.jpg",
"width": 1536,
"height": 2048
},
"isPrivate": false,
"isVerified": false,
"isPaidVerified": true,
"summary": "Let's Go",
"attachment": [
{
"type": "Link",
"href": "https://t.co/examplelink",
"rel": "preferred"
}
],
"followerCount": 372131,
"followingCount": 8,
"likeCount": 60,
"postCount": 267,
"mediaCount": 242,
"listedCount": 215,
"location": "Milan, Italy"
},
"image": [
{
"type": "Image",
"url": "https://pbs.twimg.com/amplify_video_thumb/2024515147692195840/img/t8ePmit3Wst1hxAM.jpg",
"width": 1536,
"height": 2048
}
]
}
}