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));
import requests
import json
response = requests.get('https://dummyapi.online/api/movies')
if response.status_code == 200:
data = json.loads(response.text)
print(data)
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 | 100 Movies with IMDB ratings |
/api/blogposts | 50 Blog Posts |
/api/users | 30 Users |
/api/pokemon | 50 Pokemon |
/api/products | 24 Real Products |
/api/todos | 50 Todo Items |
/api/social-profiles | 10 Realistic Social Media Profiles |
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 |
/api/todos/1 | Access Todos with ID of 1 |
/api/social-profiles/1 | Access Social Media Profile with ID of 1 |