• 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 statuses id retweeted_by ids

Page history last edited by Taylor Singletary 14 years, 6 months ago

<< Back to Twitter API Documentation

 

Twitter REST API Method: GET /statuses/:id/retweeted_by/ids.format

Show user ids of up to 100 users who retweeted the status represented by id

 

URL:

http://api.twitter.com/1/statuses/id/retweeted_by/ids.format

 

Formats: 

xml, json

 

HTTP Method(s):

GET

 

Requires Authentication (about authentication):

true

 

API rate limited (about rate limiting):

false

 

Parameters:

  • id.  Required. The id of the status
  • count. Indicates number of retweeters to return per page, with a maximum 100 possible results.
  • page. Specifies the page of results to retrieve. Note: there are pagination limits.

 

Usage examples:

cURL (about cURL):

curl -u user:password http://api.twitter.com/statuses/9548214222/retweeted_by/ids.xml

 

Response (about return values): 

XML example:

<?xml version="1.0" encoding="UTF-8"?>
<ids>
<id>16758065</id>
<id>43968397</id>
<id>5933482</id>
</ids>

 

Comments (0)

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