I mean, the blog post specifically says
Creating a consistent experience
Because we want to provide a consistent experience with our API, we made some decisions that apply across the board:
- All APIs will use a cursor for pagination. Once you understand pagination for one endpoint, you should understand it for all endpoints.
- Parameters will always be in the query string. This will allow flexibility for us to support new functionality without changing the base route.
- We will have bulk GET calls for our resources. You can request up to 100 users, streams, or other base resources. (Note: bulk calls are not available for specific relationships, such as whether or not user X follows user Y).