xAPIs.dev
API Reference · v2
Free Tools{ }OpenAPI YAMLGet API key
API Reference / Community / Get community moderators

Get community moderators

GET/twitter/community/moderators18 credits

List the moderators of a Twitter Community. The sample response below is captured from the live API. List endpoints paginate with `has_next_page` and `next_cursor`.

Authentication required
Send your key in the x-api-key header. Requests without a valid key return 401.

Query parameters

community_id
stringrequired
The numeric ID of the community.
cursor
stringoptional
Pagination cursor for the next page.

Response fields

moderatorsarray
Array of community moderator user objects.
has_nextboolean
Legacy pagination flag (mirrors has_next_page).
has_next_pageboolean
Whether another page of results is available.
next_cursorobject
Cursor for the next page; null or empty when exhausted.
statusstring
Request status: "success" or "error".
msgstring
Status message from the upstream.
Request
curl https://v2.xapis.dev/twitter/community/moderators \
  -G --data-urlencode "community_id=1493446837214187523" \
  -H "x-api-key: $XAPIS_KEY"
Response200 OK
application/json
{
  "moderators": [
    {
      "id": "641633",
      "name": "Marc Köhlbrugge",
      "screen_name": "marckohlbrugge",
      "location": "",
      "url": "https://t.co/QVn818Sinw",
      "description": "🚧 https://t.co/aMZ4K3azU0 🏠 https://t.co/1KH3Ex4L2r 🤑 https://t.co/z2G662Uvhl 👀 https://t.co/LtA…",
      "email": null,
      "protected": false,
      "verified": false,
      "followers_count": 84806,
      "following_count": 926,
      "friends_count": 926,
      "favourites_count": 36334,
      "statuses_count": 49226,
      "media_tweets_count": 4787,
      "created_at": "Mon Jan 15 23:55:33 +0000 2007",
      "profile_banner_url": "https://pbs.twimg.com/profile_banners/641633/1781378883",
      "profile_image_url_https": "https://pbs.twimg.com/profile_images/1857124042433572864/iMivVaYP_normal.jpg",
      "can_dm": false,
      "isBlueVerified": true
    }
  ],
  "has_next": false,
  "has_next_page": false,
  "next_cursor": null,
  "status": "success",
  "msg": "success"
}
base url · https://v2.xapis.dev
Ready to call Get community moderators?