A free fake API for testing and prototyping. No setup required, just start using it.
No more tedious sample data creation, we've got it covered.
Develop with real response codes. GET, POST, PUT & DELETE supported.
24/7 free access in your development phases. Go nuts.
Which means reliable performance. All you need is the base URL, and you're away:
/api/
The API is CORS enabled, so you can make requests right from the browser, no matter what domain.
A generic API that conforms to REST principles and accepts a content type of
application/json
Any endpoint that contains "<resource>" can be substituted with anything you supply, ie. "products", "accounts", etc.
fetch("https://yoursite.com/api/users", { method: "POST", headers: { "Content-Type": "application/json", }, body: JSON.stringify({ name: "Jane Doe", job: "Software Engineer" }), }) .then(response => response.json()) .then(data => console.log(data));
{ "name": "Jane Doe", "job": "Software Engineer", "id": "123", "createdAt": "2023-12-10T15:32:54.971Z" }