JSONPlaceholder (jsonplaceholder.org) is a free online REST API service that allows developers to access a set of sample JSON data for testing, learning, and practicing purposes. It provides a collection of mock/fake data, including resources such as users, posts, comments, and more, which can be used to simulate a real API.
HTTP methods such as POST, GET, PUT, PATCH and DELETE are used in API endpoints. The methods
work well and the result is returned, but not really recorded.
For now, there is only one simple blog example. The main goal is to create mock data with
real models taken from platforms such as wordpress, twitter, medium, shopify, tmforum,
keycloack etc. and most importantly, to develop mock APIs for Aouthantication and
Autharization processes.
GET(ALL)/POST:
> https://jsonplaceholder.org/posts
GET(BY ID)/PUT/PATCH/DELETE:
> https://jsonplaceholder.org/posts/1
GET(SEARCH BY ID):
> https://jsonplaceholder.org/posts?id=1
GET(ALL)/USERS:
> https://jsonplaceholder.org/users
GET(BY ID)/PUT/PATCH/DELETE:
> https://jsonplaceholder.org/users/1
GET(SEARCH BY ID):
> https://jsonplaceholder.org/users?id=1
GET(ALL)/COMMENTS:
> https://jsonplaceholder.org/comments
GET(BY ID)/PUT/PATCH/DELETE:
> https://jsonplaceholder.org/comments/1
GET(SEARCH BY ID):
> https://jsonplaceholder.org/comments?id=1
The main goal is to create mock data with real models taken from platforms such as wordpress, twitter, medium, shopify, tmforum, keycloack etc. and most importantly, to develop mock APIs for Aouthantication and Autharization processes.