POST
/
twitter
/
list
/
search
Search List
curl --request POST \
  --url https://api.twitterxapi.com/twitter/list/search \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "query": "<string>",
  "target_count": 123
}'
{
  "code": 123,
  "msg": "<string>",
  "data": [
    {
      "id": "<string>",
      "name": "<string>",
      "description": "<string>",
      "is_private": true,
      "member_count": 123,
      "subscriber_count": 123
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Body

application/json

Response

200
application/json

A list of list objects.

The response is of type object.