Hello,
What are good examples of documented REST APIs that you use as a reference in your API developments?
I very often refer to Stripe or Twilio which are excellent examples and perfectly documented. However, their APIs do not cover all aspects of a real-life app, and sometimes they make "non-REST" concessions.
I sometimes have trouble finding the right REST approach (choosing the right route + method) for simple cases, like authentication for example. I'm usually tempted to use routes such as /login or /register but it just doesn't feel correct REST.
I recently had to implement a two-factor authentication API for a mobile application, but again, it was very difficult to find good examples of such API architecture.
So if you have any good documentation (swagger, postman, ...), Github repos, articles or any other resources that would be useful for designing good REST API, feel free to share them! :)
Cheers,