Documentation Index
Fetch the complete documentation index at: https://docs.x.com/llms.txt
Use this file to discover all available pages before exploring further.
Manage Lists: Standard v1.1 compared to X API v2
If you have been working with the standard v1.1 POST lists/create, POST lists/destroy, and POST lists/update endpoints, the goal of this guide is to help you understand the similarities and differences between the standard v1.1 and X API v2 manage List endpoints.- Similarities
- Authentication
- Differences
- Endpoint URLs
- App and Project requirements
- HTTP methods
- Rate limits
- Request parameters
Similarities
Authentication Both endpoint versions support OAuth 1.0a User Context. Therefore, if you were previously using one of the standard v1.1 manage Lists endpoints, you can continue using the same authentication method if you migrate to the X API v2 version.Differences
Endpoint URLs- Standard v1.1 endpoints:
- POST https://api.x.com/1.1/lists/create.json (Creates a List)
- POST https://api.x.com/1.1/lists/destroy.json (Deletes a List)
- POST https://api.x.com/1.1/lists/update.json (Updates a List)
- X API v2 endpoint:
- POST https://api.x.com/2/lists (Creates a List)
- DELETE https://api.x.com/2/lists/:id (Deletes a List)
- PUT https://api.x.com/2/lists/:id (Updates a List)