GET mutes/users/ids

Updated on Thu, 2014-05-01 06:51

Returns an array of numeric user ids the authenticating user has muted.

Resource URL

https://api.twitter.com/1.1/mutes/users/ids.json

Parameters

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 previous_cursor and next_cursor to allow paging back and forth. See Using cursors to navigate collections for more information.

Example Values: 2

Example Request

GET

https://api.twitter.com/1.1/mutes/users/ids.json?cursor=-1


  1. {
  2.   "ids": [
  3.     1228026486,
  4.     54931584
  5.   ],
  6.   "next_cursor": 0,
  7.   "next_cursor_str": "0",
  8.   "previous_cursor": 0,
  9.   "previous_cursor_str": "0"
  10. }