• 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 memberships

Page history last edited by Marcel Molina 14 years, 5 months ago

Twitter REST API Method: GET /:user/lists/memberships

List the lists the specified user has been added to.

 

URL:

http://api.twitter.com/1/user/lists/memberships.format

 

Formats: 

xml, json

 

HTTP Method(s):

GET

 

Requires Authentication (about authentication):

true

 

API rate limited (about rate limiting):

true

 

Parameters:

  • cursorOptional. Breaks the results into pages. A single page contains 20 lists. Provide a value of -1 to begin paging. Provide values as returned to in the response body's next_cursor and previous_cursor attributes to page back and forth in the list.
    • Example: http://api.twitter.com/1/twitterapi/lists/memberships.xml?cursor=-1
    • Example: http://api.twitter.com/1/twitterapi/lists/memberships.xml?cursor=-1300794057949944903

 

Usage examples:

cURL (about cURL):

curl -u user:password http://api.twitter.com/1/twitterapi/lists/memberships.xml

 

Response (about return values): 

XML example:

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

<lists_list>

<lists type="array">

<list>

  <id>881927</id>

  <name>tech</name>

  <full_name>@ThatPJ/tech</full_name>

  <slug>tech</slug>

  <subscriber_count>1</subscriber_count>

  <member_count>104</member_count>

  <uri>/ThatPJ/tech</uri>

  <mode>public</mode>

  <user>

    <id>23104877</id>

    <name>PJ Edwards</name>

    <screen_name>ThatPJ</screen_name>

    <location>Michigan</location>

    <description>An Overglorified Extra.  </description>

    <profile_image_url>http://a1.twimg.com/profile_images/426872428/DSCN0222_normal.JPG</profile_image_url>

    <url>http://thatpj.tumblr.com/post/181180225/thoserrules</url>

    <protected>false</protected>

    <followers_count>457</followers_count>

    <profile_background_color>8cdbea</profile_background_color>

    <profile_text_color>000000</profile_text_color>

    <profile_link_color>0068ff</profile_link_color>

    <profile_sidebar_fill_color>87bb35</profile_sidebar_fill_color>

    <profile_sidebar_border_color>329b31</profile_sidebar_border_color>

    <friends_count>183</friends_count>

    <created_at>Fri Mar 06 19:16:57 +0000 2009</created_at>

    <favourites_count>1795</favourites_count>

    <utc_offset>-18000</utc_offset>

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

    <profile_background_image_url>http://a3.twimg.com/profile_background_images/46632753/twitbacks_background.jpg</profile_background_image_url>

    <profile_background_tile>false</profile_background_tile>

    <statuses_count>2573</statuses_count>

    <notifications>false</notifications>

    <geo_enabled>false</geo_enabled>

    <verified>false</verified>

    <following>false</following>

  </user>

</list>

<list>

  <id>2137356</id>

  <name>twittervia</name>

  <full_name>@AbbyCe/twittervia</full_name>

  <slug>twittervia</slug>

  <subscriber_count>0</subscriber_count>

  <member_count>12</member_count>

  <uri>/AbbyCe/twittervia</uri>

  <mode>public</mode>

  <user>

    <id>8086712</id>

    <name>Abby</name>

    <screen_name>AbbyCe</screen_name>

    <location>Florida</location>

    <description>Music, sports, technology enthusiast, internet shop owner, blogger, boricua, optimist with pinch of realist and chocolate lover :)</description>

    <profile_image_url>http://a1.twimg.com/profile_images/471084916/DSC000277777_normal.JPG</profile_image_url>

    <url>http://norbela.blogspot.com</url>

    <protected>false</protected>

    <followers_count>616</followers_count>

    <profile_background_color>badfcd</profile_background_color>

    <profile_text_color>0C3E53</profile_text_color>

    <profile_link_color>3b1010</profile_link_color>

    <profile_sidebar_fill_color>badfcd</profile_sidebar_fill_color>

    <profile_sidebar_border_color>badfcd</profile_sidebar_border_color>

    <friends_count>666</friends_count>

    <created_at>Thu Aug 09 18:49:40 +0000 2007</created_at>

    <favourites_count>1</favourites_count>

    <utc_offset>-18000</utc_offset>

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

    <profile_background_image_url>http://s.twimg.com/a/1257288876/images/themes/theme12/bg.gif</profile_background_image_url>

    <profile_background_tile>false</profile_background_tile>

    <statuses_count>910</statuses_count>

    <notifications>false</notifications>

    <geo_enabled>false</geo_enabled>

    <verified>false</verified>

    <following>false</following>

  </user>

</list>

<!-- remaining results truncated.... -->

</lists>

<next_cursor>1318394788821099242</next_cursor>

<previous_cursor>0</previous_cursor>

</lists_list>

Comments (0)

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