List Posts lookup: Standard v1.1 compared to X API v2
If you have been working with the standard v1.1 GET lists/statuses endpoint, the goal of this guide is to help you understand the similarities and differences between the standard v1.1 and X API v2 endpoints.
- Similarities
- Authentication methods
- Rate limits
- Differences
- Endpoint URLs
- App and Project requirements
- Data objects per request limits
- Response data formats
- Request parameters
Similarities
Authentication
Both endpoint versions support both OAuth 1.0a User Context and App only. Therefore, if you were previously using one of the standard v1.1 List Posts lookup endpoints, you can continue using the same authentication method if you migrate to the X API v2 version.
Depending on your authentication library/package of choice, App only authentication is probably the easiest way to get started and can be set with a simple request header. To learn how to generate an App only Access Token, see this App only guide.
Rate limits
Standard v1.1 |
X API v2 |
/1.1/lists/statuses.json 900 requests per 15-minute window with OAuth 1.0a User Context 900 requests per 15-minute window with App only |
/2/lists/:id/tweets 900 requests per 15-minute window with OAuth 1.0a User Context 900 requests per 15-minute window with OAuth 2.0 Authorization Code with PKCE 900 requests per 15-minute window with App only |
Differences
Endpoint URLs
- Standard v1.1 endpoints:
- GET https://api.x.com/1.1/lists/statuses.json
(Lookup Tweets from a specified List)
- GET https://api.x.com/1.1/lists/statuses.json
- X API v2 endpoint:
- GET https://api.x.com/2/lists/:id/tweets
(Lookup Tweets from a specified List)
- GET https://api.x.com/2/lists/:id/tweets
App and Project requirements
The X API v2 endpoints require that you use credentials from a developer App that is associated with a Project when authenticating your requests. All X API v1.1 endpoints can use credentials from standalone Apps or Apps associated with a project.
Data objects per request limits
The standard v1.1 /lists/statuses endpoint allows you to return up to 5000 Posts per request. The new v2 endpoints allow you to return up to 100 Posts per request. By default, 100 user objects will be returned, to change the number of results you will need to pass a query parameter max_results= with a number between 1-100; you can then pass the next_token returned in the response payload to the pagination_token query parameter in your next request.
Response data format
One of the biggest differences between standard v1.1 and X API v2 endpoint versions is how you select which fields return in your payload.
For the standard endpoints, you receive many of the response fields by default and then have the option to use parameters to identify which additional fields or sets of fields should return in the payload.
The X API v2 version only delivers the Post id and text fields by default. To request any additional fields or objects, you will need to use the fields and expansions parameters. Any Post fields that you request from this endpoint will return in the primary Post object. Any expanded object fields will return an includes object within your response. You can then match any expanded objects back to the primary Post object by matching the IDs from the primary object and in expanded objects.
Here are examples of possible Post fields and expansions:
attachments
author_id
context_annotations
created_at
geo
lang
Endpoint |
Expansion |
/2/lists/:id/tweets |
author_id |
We encourage you to read more about these new parameters in their respective guides, or by reading our guide on how to use fields and expansions.
We have also put together a data format migration guide that can help you map standard v1.1 fields to the newer v2 fields. This guide will also provide you the specific expansion and field parameter that you will need to pass with your v2 request to return specific fields.
In addition to the changes in how you request certain fields, X API v2 is also introducing new JSON designs for the objects returned by the APIs, including Post and user objects.
At the JSON root level, the standard endpoints return Post objects in a statuses array, while X API v2 returns a data array.
Instead of referring to Retweeted and Quoted "statuses", X API v2 JSON refers to Retweeted and Quoted Tweets. Many legacy and deprecated fields, such as contributors and user.translator_type are being removed.
Instead of using both favorites (in Post object) and favourites (in user object), X API v2 uses the term like.
X is adopting the convention that JSON values with no value (for example, null) are not written to the payload. Post and user attributes are only included if they have non-null values.
Request parameters
The following standard v1.1 request parameters have equivalents in X API v2:
Standard v1.1 |
X API v2 |
list_id |
id |
slug |
No equivalent |
owner_screen_name |
No equivalent |
owner_id |
Requested with expansions parameter with value of author_id |
since_id | No equivalent |
max_id | No equivalent |
include_entities | Requested with tweet.fields parameter with value of entities |
include_rts | No equivalent |
count | max_results |