til

Today I Learned: collection of notes, tips and tricks and stuff I learn from day to day working with computers and technology as an open source contributor and product manager

View project on GitHub

Prototype with dummy APIs

For getting going with example/dummy APIs the Req  Res service is awesome.

It offers a RESTful interface support the verbs:

  • GET
  • POST
  • PATCH
  • DELETE
  • PUT

And variations in URIs so you can simulate different aspects of an application, such as listing, non-found resources, unsuccessfull requests etc.

Another interesting alternative is: JSONPlaceholder.

Resources