Skip to main content
POST
/
twitter
/
communities
/
explore
Explore Communities
curl --request POST \
  --url https://api.apitwitter.com/twitter/communities/explore \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "cookie": "<string>",
  "proxy": "<string>",
  "count": 20,
  "cursor": "<string>"
}
'
{
  "data": {
    "communities": [
      {
        "id": "123456789",
        "name": "Tech Community",
        "description": "A community for tech enthusiasts",
        "member_count": 5000
      }
    ]
  }
}

Authorizations

X-API-Key
string
header
required

Your API key

Body

application/json

Twitter auth cookie

proxy
string
required

Proxy URL to use for the request (HTTP or SOCKS5)

count
integer
default:20

Number of results to return, 1-100 (default: 20)

Required range: 1 <= x <= 100
cursor
string

Pagination cursor for the next page

Response

List of communities

status
string

Response status

Example:

"success"

msg
string

Response message

data
any

Response data