Skip to main content
POST
/
twitter
/
muted
Get Muted Users
curl --request POST \
  --url https://api.apitwitter.com/twitter/muted \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "cookie": "<string>",
  "proxy": "<string>",
  "count": 200,
  "cursor": "<string>"
}
'
{
  "data": {
    "users": [
      {
        "id": "123456789",
        "userName": "muteduser",
        "name": "Muted User",
        "screen_name": "muteduser",
        "description": "",
        "location": "",
        "url": "",
        "created_at": "Mon Jan 01 00:00:00 +0000 2020",
        "followers": 100,
        "following": 50,
        "favourites_count": 0,
        "statuses_count": 10,
        "listed_count": 0,
        "media_count": 0,
        "verified": false,
        "is_blue_verified": false,
        "profile_image_url": "",
        "profile_banner_url": "",
        "protected": false,
        "can_dm": false
      }
    ],
    "next_cursor": "0|2031051115600019454"
  }
}

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:200

Number of results to return (default: 200)

cursor
string

Pagination cursor for the next page

Response

List of muted users

status
string

Response status

Example:

"success"

msg
string

Response message

data
any

Response data