DummyAPI Hero Image

Dummy API

Our Dummy API provides you with a simple way to generate dummy data for your application.


  {
    id: 1,
    movie: "The Shawshank Redemption",
    rating: 9.2,
    image: "images/shawshank.jpg",
    imdb_url: "https://www.imdb.com/title/tt0111161/",
  }

Try it!

With our Mock JSON API you can use dummy data to develop your application without the need of writing a backend first. Just fetch one of our endpoints and use our mock API data 🚀

fetch('https://dummyapi.online/api/movies')
      .then(response => response.json())
      .then(json => console.log(json))
      

Endpoints

Our dummy API comes with a lot of different endpoints for you to choose from. We cover the most common data types.

Resources

The following paths are available in our REST API.

/api/movies 10 Movies with IMDB ratings
/api/blogposts 10 Blog Posts
/api/users 10 Users
/api/pokemon 5 Pokemon
/api/products 100 Products

Individual Routes

You can also access individual routes within our Dummy API.

/api/movies/1 Access Movie with ID of 1
/api/blogposts/1 Access Blog Post with ID of 1
/api/users/1 Access User with ID of 1
/api/pokemon/1 Access Pokemon with ID of 1
/api/products/1 Access Products with ID of 1
Tip:

Check out our DOCS for more usage examples!