GET blocks/list

Please note

We recently released blocks lookup, a Twitter API v2 endpoint that has similar functionality to this one. The new version is currently in development and serves adequate access for the majority of developers on our platform. While elevated levels of access are coming soon, developers in need of higher levels of access should continue to use this endpoint along with the Twitter API v2 version.

GET blocks/list

Returns a collection of user objects that the authenticating user is blocking.

Important This method is cursored, meaning your app must make multiple requests in order to receive all blocks correctly. See Using cursors to navigate collections for more details on how cursoring works.

Resource URL

https://api.twitter.com/1.1/blocks/list.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
include_entities optional The entities node will not be included when set to false . false
skip_status optional When set to either true , t or 1 statuses will not be included in the returned user objects.
cursor semi-optional

Causes the list of blocked users 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 after connections are queried. 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.

12893764510938

Example Request

GET https://api.twitter.com/1.1/blocks/list.json?skip_status=true&cursor=-1

Example Response

{
  "previous_cursor": 0,
  "previous_cursor_str": "0",
  "next_cursor": 0,
  "users": [
    {
      "profile_sidebar_fill_color": "DDEEF6",
      "profile_background_tile": false,
      "profile_sidebar_border_color": "C0DEED",
      "name": "Javier Heady r",
      "created_at": "Thu Mar 01 00:16:47 +0000 2012",
      "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png",
      "location": "",
      "is_translator": false,
      "follow_request_sent": false,
      "profile_link_color": "0084B4",
      "id_str": "509466276",
      "entities": {
        "description": {
          "urls": [

          ]
        }
      },
      "contributors_enabled": false,
      "favourites_count": 0,
      "url": null,
      "default_profile": true,
      "utc_offset": null,
      "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png",
      "id": 509466276,
      "listed_count": 0,
      "profile_use_background_image": true,
      "followers_count": 0,
      "protected": false,
      "lang": "en",
      "profile_text_color": "333333",
      "profile_background_color": "C0DEED",
      "notifications": false,
      "verified": false,
      "description": "",
      "geo_enabled": false,
      "time_zone": null,
      "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png",
      "friends_count": 0,
      "default_profile_image": true,
      "statuses_count": 4,
      "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png",
      "following": false,
      "screen_name": "javierg3ong"
    }
  ],
  "next_cursor_str": "0"
}