|
GET users/contributees |
Returns an array of users that the specified user can contribute to. |
|
GET users/show |
Returns extended information of a given user, specified by ID or screen name as per the required id parameter. The author's most recent status will be returned inline. |
|
GET users/search |
Runs a search for users similar to Find People button on Twitter.com. The results returned by people search on Twitter.com are the same as those returned by this API request. Note that unlike GET search, this method does not support any operators.
Only the first 1000 matches are available.
|
|
GET users/lookup |
Return up to 100 users worth of extended information, specified by either ID, screen name, or combination of the two. The author's most recent status (if the authenticating user has permission) will be returned inline.
This method is crucial for consumers of the Streaming API. It's also well suited... |
|
POST friendships/create |
Allows the authenticating users to follow the user specified in the ID parameter.
Returns the befriended user in the requested format when successful. Returns a string describing the failure condition when unsuccessful. If you are already friends with the user a HTTP 403 may be returned, though for... |
|
POST friendships/destroy |
Allows the authenticating users to unfollow the user specified in the ID parameter.
Returns the unfollowed user in the requested format when successful. Returns a string describing the failure condition when unsuccessful. |
|
GET statuses/:id/retweeted_by |
Show user objects of up to 100 members who retweeted the status. |
|
POST geo/place |
Creates a new place object at the given latitude and longitude.
Before creating a place you need to query GET geo/similar_places with the latitude, longitude and name of the place you wish to create. The query will return an array of places which are similar to the one you wish to create, and a... |
|
GET geo/search |
Search for places that can be attached to a statuses/update. Given a latitude and a longitude pair, an IP address, or a name, this request will return a list of all the valid places that can be used as the place_id when updating a status.
Conceptually, a query can be made from the user's location... |
|
GET geo/reverse_geocode |
Given a latitude and a longitude, searches for up to 20 places that can be used as a place_id when updating a status.
This request is an informative call and will deliver generalized results about geography. |
|
GET geo/id/:place_id |
Returns all the information about a known place. |
|
POST favorites/destroy/:id |
Un-favorites the status specified in the ID parameter as the authenticating user. Returns the un-favorited status in the requested format when successful.
This process invoked by this method is asynchronous. The immediately returned status may not indicate the resultant favorited status of the... |
|
POST favorites/create/:id |
Favorites the status specified in the ID parameter as the authenticating user. Returns the favorite status when successful.
This process invoked by this method is asynchronous. The immediately returned status may not indicate the resultant favorited status of the tweet. A 200 OK response from this... |
|
POST statuses/update_with_media |
Updates the authenticating user's status and attaches media for upload.
Unlike POST statuses/update, this method expects raw multipart data. Your POST request's Content-Type should be set to multipart/form-data with the media[] parameter
The Tweet text will be rewritten to include the media... |
|
POST statuses/update |
Updates the authenticating user's status, also known as tweeting. To upload an image to accompany the tweet, use POST statuses/update_with_media.
For each update attempt, the update text is compared with the authenticating user's recent tweets. Any attempt that would result in duplication will be... |
|
POST statuses/retweet/:id |
Retweets a tweet. Returns the original tweet with retweet details embedded. |
|
POST statuses/destroy/:id |
Destroys the status specified by the required ID parameter. The authenticating user must be the
author of the specified status. Returns the destroyed status if successful. |
|
GET statuses/show/:id |
Returns a single status, specified by the id parameter below. The status's author will be returned inline. |
|
GET statuses/retweets/:id |
Returns up to 100 of the first retweets of a given tweet. |