• If you are citizen of an European Union member nation, you may not use this service unless you are at least 16 years old.

  • You already know Dokkio is an AI-powered assistant to organize & manage your digital files & messages. Very soon, Dokkio will support Outlook as well as One Drive. Check it out today!

View
 

Twitter REST API Method: GET list subscribers id

Page history last edited by Mark McBride 14 years, 4 months ago

 

<< Back to Twitter API Documentation

 

Twitter REST API Method: GET /:user/:list_id/subscribers/:id

Check if the specified user is a subscriber of the specified list.

 

URL:

http://api.twitter.com/1/user/list_id/subscribers/:id.format

 

Formats: 

xml, json

 

HTTP Method(s):

GET

 

Requires Authentication (about authentication):

true

 

API rate limited (about rate limiting):

true

 

Parameters:

  • user.  Required.  The ID or screen name of the list's owner
  • list_id.  Required. The id or slug of the list.
  • id. Required. The id of the user who you want to know is a subcriber or not of the specified list.

 

Usage examples:

cURL (about cURL):

curl -u user:password http://api.twitter.com/1/twitterapi/team/subscribers/2625781.xml

 

Response (about return values): 

XML example:

<?xml version="1.0" encoding="UTF-8"?>

<user>

  <id>2625781</id>

  <name>Scobelizer</name>

  <screen_name>Scobelizer</screen_name>

  <location></location>

  <description></description>

  <profile_image_url>http://a1.twimg.com/profile_images/30566462/twitterbird_normal.jpg</profile_image_url>

  <url></url>

  <protected>false</protected>

  <followers_count>511</followers_count>

  <profile_background_color>9ae4e8</profile_background_color>

  <profile_text_color>000000</profile_text_color>

  <profile_link_color>0000ff</profile_link_color>

  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>

  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>

  <friends_count>26</friends_count>

  <created_at>Wed Mar 28 06:18:29 +0000 2007</created_at>

  <favourites_count>0</favourites_count>

  <utc_offset>-28800</utc_offset>

  <time_zone>Pacific Time (US & Canada)</time_zone>

  <profile_background_image_url>http://s.twimg.com/a/1255644274/images/themes/theme1/bg.png</profile_background_image_url>

  <profile_background_tile>false</profile_background_tile>

  <statuses_count>23</statuses_count>

  <notifications></notifications>

  <geo_enabled>false</geo_enabled>

  <verified>false</verified>

  <following></following>

  <status>

    <created_at>Thu Jan 29 03:51:00 +0000 2009</created_at>

    <id>1157493875</id>

    <text>Please Retweet! @lonelygirl15 Put #haterday in your tweets today and I might show my boobs - http://tinyurl.com/brcutn</text>

    <source>web</source>

    <truncated>false</truncated>

    <in_reply_to_status_id></in_reply_to_status_id>

    <in_reply_to_user_id></in_reply_to_user_id>

    <favorited>false</favorited>

    <in_reply_to_screen_name></in_reply_to_screen_name>

    <geo/>

  </status>

</user>

 

Comments (0)

You don't have permission to comment on this page.