Skip to main content
GET
/
x
/
communities
/
{id}
/
info
Get community info
curl --request GET \
  --url https://api.example.com/x/communities/{id}/info \
  --header 'x-api-key: <x-api-key>'
1 credit per call · All plans from $0.00012/credit
curl https://xquik.com/api/v1/x/communities/1234567890/info \
  -H "x-api-key: xq_YOUR_KEY_HERE" | jq

Path parameters

id
string
required
Community ID (numeric string).

Headers

x-api-key
string
required
Your API key. Session cookie authentication is also supported.

Response

community
object
Community details.
{
  "community": {
    "id": "1234567890",
    "name": "Web Developers",
    "description": "A community for web developers",
    "member_count": 15000,
    "moderator_count": 5,
    "join_policy": "Open",
    "created_at": "2024-01-15T00:00:00.000Z",
    "primary_topic": { "id": "1", "name": "Technology" },
    "rules": [
      { "id": "1", "name": "Be respectful", "description": "Treat all members with respect." }
    ]
  }
}
Next steps: Community Members to list members, or Community Tweets to browse posts.