Fake API

A free fake API for testing and prototyping. No setup required, just start using it.

Test your front-end against a real API

Fake data

No more tedious sample data creation, we've got it covered.

Real responses

Develop with real response codes. GET, POST, PUT & DELETE supported.

Always-on

24/7 free access in your development phases. Go nuts.

A hosted REST-API ready to respond to your AJAX requests.

Give it a try

  • List users
  • Single user
  • Single user not found
  • List <resource>
  • Single <resource>
  • Create
  • Update
  • Delete
  • Register - successful
  • Register - unsuccessful
  • Login - successful
  • Login - unsuccessful
  • Delayed response
Request
Response
Response will appear here after sending a request

It's all in the details

Hosted on Nuxt

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.

Language agnostic

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.

Getting started

JavaScript Example

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));
            

Response

{
  "name": "Jane Doe",
  "job": "Software Engineer",
  "id": "123",
  "createdAt": "2023-12-10T15:32:54.971Z"
}