|
GET users/suggestions/:slug/members |
Access the users in a given category of the Twitter suggested user list and return their most recent status if they are not a protected user. |
|
GET users/suggestions/:slug |
Access the users in a given category of the Twitter suggested user list.
It is recommended that applications cache this data for no more than one hour. |
|
GET users/suggestions |
Access to Twitter's suggested user list. This returns the list of suggested user categories. The category can be used in GET users/suggestions/:slug to get the users in that category. |
|
GET users/show |
Returns a variety of information about the user specified by the required user_id or screen_name parameter. The author's most recent Tweet will be returned inline when possible.
GET users/lookup is used to retrieve a bulk collection of user objects. |
|
GET users/lookup |
Returns fully-hydrated user objects for up to 100 users per request, as specified by comma-separated values passed to the user_id and/or screen_name parameters.
This method is especially useful when used in conjunction with collections of user IDs returned from GET friends/ids and GET followers/... |
|
GET trends/place |
Returns the top 10 trending topics for a specific WOEID, if trending information is available for it.
The response is an array of "trend" objects that encode the name of the trending topic, the query parameter that can be used to search for the topic on Twitter Search, and the Twitter Search URL.... |
|
GET trends/closest |
Returns the locations that Twitter has trending topic information for, closest to a specified location.
The response is an array of "locations" that encode the location's WOEID and some other human-readable information such as a canonical name and country the location belongs in.
A WOEID is a Yahoo... |
|
GET trends/available |
Returns the locations that Twitter has trending topic information for.
The response is an array of "locations" that encode the location's WOEID and some other human-readable information such as a canonical name and country the location belongs in.
A WOEID is a Yahoo! Where On Earth ID. |
|
GET statuses/user_timeline |
Returns a collection of the most recent Tweets posted by the user indicated by the screen_name or user_id parameters.
User timelines belonging to protected users may only be requested when the authenticated user either "owns" the timeline or is an approved follower of the owner.
The timeline... |
|
GET statuses/show/:id |
Returns a single Tweet, specified by the id parameter. The Tweet's author will also be embedded within the tweet.
See Embeddable Timelines, Embeddable Tweets, and GET statuses/oembed for tools to render Tweets according to Display Requirements. |
|
GET statuses/retweets/:id |
Returns up to 100 of the first retweets of a given tweet. |
|
GET statuses/oembed |
Returns information allowing the creation of an embedded representation of a Tweet on third party sites. See the oEmbed specification for information about the response format.
While this endpoint allows a bit of customization for the final appearance of the embedded Tweet, be aware that the... |
|
GET search/tweets |
Returns a collection of relevant Tweets matching a specified query.
Please note that Twitter's search service and, by extension, the Search API is not meant to be an exhaustive source of Tweets. Not all Tweets will be indexed or made available via the search interface.
In API v1.1, the response... |
|
GET lists/list |
Returns all lists the authenticating or specified user subscribes to, including their own. The user is specified using the user_id or screen_name parameters. If no user is given, the authenticating user is used.
This method used to be GET lists in version 1.0 of the API and has been renamed for... |
|
GET lists/subscriptions |
Obtain a collection of the lists the specified user is subscribed to, 20 lists per page by default. Does not include the user's own lists. |
|
GET lists/subscribers/show |
Check if the specified user is a subscriber of the specified list. Returns the user if they are subscriber. |
|
GET lists/subscribers |
Returns the subscribers of the specified list. Private list subscribers will only be shown if the authenticated user owns the specified list. |
|
GET lists/statuses |
Returns a timeline of tweets authored by members of the specified list. Retweets are included by default. Use the include_rts=false parameter to omit retweets.
Embedded Timelines is a great way to embed list timelines on your website. |
|
GET lists/show |
Returns the specified list. Private lists will only be shown if the authenticated user owns the specified list. |
|
GET lists/memberships |
Returns the lists the specified user has been added to. If user_id or screen_name are not provided the memberships for the authenticating user are returned. |