Twitoaster API: conversation/user Returns the 20 most recent conversations started by the requested user. The user has to be registered on Twitoaster. Otherwise, a 404 error is returned.

 
 

Formats JSON http://api.twitoaster.com/conversation/user.json
PHP http://api.twitoaster.com/conversation/user.php_serial
XML http://api.twitoaster.com/conversation/user.xml

 
 

Parameters HTTP method is GET and parameter(s) must be UTF-8 & URL encoded.

One of the following parameters is required:
user_id ID of the user for whom to return the conversations.
screen_name Screen name of the user for whom to return the conversations.

Optional parameters:
page Specifies the page of results to retrieve.
show_replies Include conversation replies. Use true or false.

 
 

Response User's Conversation(s), in the requested format. Each conversation is represented using the following structure:

thread first tweet, which received all the replies:
   url
   id
   title
   content
   created_at conversation (first tweet) date. 2 formats available:
      datetime_gmt
      unix_timestamp
   last_reply_at last reply date. 2 formats available:
      datetime_gmt
      unix_timestamp
   stats number of replies, retweets, links and images in the conversation:
      total_mentions
      total_replies
      total_retweets
      distinct_users
      links
      images
   user author of the conversation (first tweet):
      url
      id
      screen_name
      profile_image_url
replies all mentions (replies and retweets), if any:
   reply (for each replies / retweets)
      type
      url
      id
      content
      in_reply_to_status_id
      created_at reply date. 2 formats available:
         datetime_gmt
         unix_timestamp
      user author of the conversation (first tweet):
         url
         id
         screen_name
         profile_image_url