Skip to main content
GET
/
twitter
/
community
/
info
Get Community Info By Id
curl --request GET \
  --url https://api.aisa.one/apis/v1/twitter/community/info \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "name": "<string>",
  "description": "<string>",
  "question": "<string>",
  "member_count": 123,
  "moderator_count": 123,
  "created_at": "<string>",
  "join_policy": "<string>",
  "invites_policy": "<string>",
  "is_nsfw": true,
  "is_pinned": true,
  "role": "<string>",
  "primary_topic": {
    "id": "<string>",
    "name": "<string>"
  },
  "banner_url": "<string>",
  "search_tags": [
    "<string>"
  ],
  "rules": [
    {
      "id": "<string>",
      "name": "<string>",
      "description": "<string>"
    }
  ],
  "creator": {
    "type": "<string>",
    "userName": "<string>",
    "url": "<string>",
    "id": "<string>",
    "name": "<string>",
    "isBlueVerified": true,
    "verifiedType": "<string>",
    "profilePicture": "<string>",
    "coverPicture": "<string>",
    "description": "<string>",
    "location": "<string>",
    "followers": 123,
    "following": 123,
    "canDm": true,
    "createdAt": "<string>",
    "favouritesCount": 123,
    "hasCustomTimelines": true,
    "isTranslator": true,
    "mediaCount": 123,
    "statusesCount": 123,
    "withheldInCountries": [
      "<string>"
    ],
    "possiblySensitive": true,
    "pinnedTweetIds": [
      "<string>"
    ],
    "isAutomated": true,
    "automatedBy": "<string>",
    "unavailable": true,
    "message": "<string>",
    "unavailableReason": "<string>",
    "profile_bio": {
      "description": "<string>",
      "entities": {
        "description": {
          "urls": [
            {
              "display_url": "<string>",
              "expanded_url": "<string>",
              "indices": [
                123
              ],
              "url": "<string>"
            }
          ]
        },
        "url": {
          "urls": [
            {
              "display_url": "<string>",
              "expanded_url": "<string>",
              "indices": [
                123
              ],
              "url": "<string>"
            }
          ]
        }
      }
    }
  },
  "admin": {
    "type": "<string>",
    "userName": "<string>",
    "url": "<string>",
    "id": "<string>",
    "name": "<string>",
    "isBlueVerified": true,
    "verifiedType": "<string>",
    "profilePicture": "<string>",
    "coverPicture": "<string>",
    "description": "<string>",
    "location": "<string>",
    "followers": 123,
    "following": 123,
    "canDm": true,
    "createdAt": "<string>",
    "favouritesCount": 123,
    "hasCustomTimelines": true,
    "isTranslator": true,
    "mediaCount": 123,
    "statusesCount": 123,
    "withheldInCountries": [
      "<string>"
    ],
    "possiblySensitive": true,
    "pinnedTweetIds": [
      "<string>"
    ],
    "isAutomated": true,
    "automatedBy": "<string>",
    "unavailable": true,
    "message": "<string>",
    "unavailableReason": "<string>",
    "profile_bio": {
      "description": "<string>",
      "entities": {
        "description": {
          "urls": [
            {
              "display_url": "<string>",
              "expanded_url": "<string>",
              "indices": [
                123
              ],
              "url": "<string>"
            }
          ]
        },
        "url": {
          "urls": [
            {
              "display_url": "<string>",
              "expanded_url": "<string>",
              "indices": [
                123
              ],
              "url": "<string>"
            }
          ]
        }
      }
    }
  },
  "members_preview": [
    {}
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

community_id
string
required

ID of the community

Response

200 - application/json

Community info response

id
string
name
string
description
string
question
string
member_count
integer
moderator_count
integer
created_at
string
join_policy
string
invites_policy
string
is_nsfw
boolean
is_pinned
boolean
role
string
primary_topic
object
banner_url
string
search_tags
string[]
rules
object[]
creator
object
admin
object
members_preview
object[]