GET mutes/users/ids
Returns an array of numeric user ids the authenticating user has muted.
Resource URL¶
https://api.x.com/1.1/mutes/users/ids.json
Resource Information¶
Response formats | JSON |
Requires authentication? | Yes (user context only) |
Rate limited? | Yes |
Requests / 15-min window (user auth) | 15 |
Parameters¶
Name | Required | Description | Default Value | Example |
---|---|---|---|---|
stringify_ids | optional | Many programming environments will not consume Twitter IDs due to their size. Provide this option to have IDs returned as strings instead. Read more about Twitter IDs . | true |
|
cursor | optional | Causes the list of IDs to be broken into pages of no more than 5000 IDs at a time. The number of IDs returned is not guaranteed to be 5000 as suspended users are filtered out. If no cursor is provided, a value of -1 will be assumed, which is the first "page." The
response from the API will include a |
-1 |
2 |
Example Request¶
GET https://api.x.com/1.1/mutes/users/ids.json?cursor=-1
Example Response¶
{
"ids": [
1228026486,
54931584
],
"next_cursor": 0,
"next_cursor_str": "0",
"previous_cursor": 0,
"previous_cursor_str": "0"
}