Twitoaster API: conversation/show Returns the conversation containing the requested tweet. If the tweet can't be found in any Twitoaster conversation, a 404 error is returned.

 
 

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

 
 

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

Required parameter:
id ID of the status you want to get the conversation from.

 
 

Response The conversation where the tweet has been found, in the requested format. The 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