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))
Our dummy API comes with a lot of different endpoints for you to choose from. We cover the most common data types.
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 |
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 |
Check out our DOCS for more usage examples!