๐ŸŒ
DummyJSON
dummyjson.com
DummyJSON - Free Fake REST API for Placeholder JSON Data
fetch(`https://dummyjson.com/ RESOURCE products carts users posts comments quotes recipes todos `) ... Need a REST API for custom JSON data?
Docs
DummyJSON can be used with any type of front end project that needs products, carts, users, todos or any dummy data in JSON format. You can use examples below to check how DummyJSON works.
Free Fake REST API for Placeholder JSON Data
REST Endpoints filled with Products JSON data, DummyJSON provides a free fake REST API with placeholder JSON data for development, testing, and prototyping. Access realistic data quickly for your projects.
๐ŸŒ
Beeceptor
app.beeceptor.com โ€บ mock-server โ€บ dummy-json
Dummy JSON Rest API - Mock API
Transition to Beeceptor and enjoy realistic dummy/fake JSON data for development and prototype testing. This mock server offers various REST Endpoints filled with JSON data or entities, perfect for frontend or app development using your preferred ...
๐ŸŒ
DummyJSON
dummyjson.com โ€บ docs
Docs - DummyJSON - Free Fake REST API for Placeholder JSON Data
// Could be GET or POST/PUT/PATCH/DELETE fetch('https://dummyjson.com/test') .then(res => res.json()) .then(console.log); /* { status: 'ok', method: 'GET' } */ ... All the resources can be used with query params to achieve pagination and get limited data. `limit=0` clears the limit and you get all items ยท fetch('https://dummyjson.com/RESOURCE/?limit=10&skip=5&select=key1,key2,key3'); ...
๐ŸŒ
DummyJSON
dummyjson.com โ€บ docs โ€บ users
Users - DummyJSON - Free Fake REST API for Placeholder JSON Data
fetch('https://dummyjson.com/user/login', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ username: 'emilys', password: 'emilyspass', expiresInMins: 30, // optional, defaults to 60 }), }) .then(res => res.json()) .then(console.log); Show Output
๐ŸŒ
Mocki
mocki.io โ€บ fake-json-api
Fake API - Dummy User and Todo API - Create Your Own
Access ready to use fake and dummy APIs with JSON data such as users and todos. Create your own fake API using Mockis interactive API editor.
๐ŸŒ
JSONPlaceholder
jsonplaceholder.typicode.com
JSONPlaceholder - Free Fake REST API
JSONPlaceholder is a free online REST API that you can use whenever you need some fake data. It can be in a README on GitHub, for a demo on CodeSandbox, in code examples on Stack Overflow, ...or simply to test things locally.
๐ŸŒ
Microsoft Edge
microsoftedge.github.io โ€บ Demos โ€บ json-dummy-data
JSON dummy data | Demos
This is a collection of dummy JSON files in various sizes to use as test data for the JSON viewer.
๐ŸŒ
GitHub
github.com โ€บ Ovi โ€บ DummyJSON
GitHub - Ovi/DummyJSON: DummyJSON.com provides different types of REST Endpoints filled with JSON data which you can use in developing the frontend with your favorite framework and library without worrying about writing a backend. ยท GitHub
DummyJSON.com provides different types of REST Endpoints filled with JSON data which you can use in developing the frontend with your favorite framework and library without worrying about writing a backend. - Ovi/DummyJSON
Starred by 2.7K users
Forked by 282 users
Languages ย  EJS 46.4% | JavaScript 43.6% | SCSS 9.8% | Dockerfile 0.2%
๐ŸŒ
DummyJSON
dummyjson.com โ€บ docs โ€บ products
Products - DummyJSON - Free Fake REST API for Placeholder JSON Data
fetch('https://dummyjson.com/products/add', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ title: 'BMW Pencil', /* other product data */ }) }) .then(res => res.json()) .then(console.log); Show Output
Find elsewhere
๐ŸŒ
Eviltester
apichallenges.eviltester.com โ€บ practice-sites โ€บ dummyjson
Dummy JSON - A Mix of API Simulator and GET API - Practice API
An overview of the Dummy JSON practice API site, explaining how to use it to learn about APIs and practice with API tooling.
๐ŸŒ
PublicAPI
publicapi.dev โ€บ dummy-json-api
DummyJSON API - PublicAPI
Get Sample Data Endpoint: GET /sampleData Description: This endpoint returns sample JSON data generated using predefined schemas.
๐ŸŒ
Json Data API
jsondata.reactbd.com
Json Data API - Free Fake JSON Data & Mock API for E-commerce Development
Json Data API providing fake JSON data for e-commerce development. Get sample products, users, carts, and orders data for testing and prototyping. No authentication required.
๐ŸŒ
Envato Tuts+
code.tutsplus.com โ€บ home โ€บ coding fundamentals
Get a Fake REST API Up and Running Using json-server | Envato Tuts+
June 24, 2022 - For example, to search for names starting with the letters sa, we'll make use of the _like operator and make a GET request to the URL http://localhost:3000/users?name_like=^sa. In this tutorial, you saw how to use json-server REST APIs to create ...
๐ŸŒ
Beeceptor
beeceptor.com โ€บ mock-api
JSON & XML Mock Server - Free
Beeceptor turns your sample payloads into working mock servers. Start with static responses or apply 300+ smart data generators to produce dynamic, meaningful data that behaves like a real backend.
๐ŸŒ
npm
npmjs.com โ€บ package โ€บ dummy-json
dummy-json - npm
A common use of Dummy JSON is to create a mock API endpoint that returns random data. Here's a quick example using Express:
      ยป npm install dummy-json
    
Published ย  Apr 03, 2022
Version ย  3.0.5
Author ย  Matt Sweetman
๐ŸŒ
DummyJSON
dummyjson.com โ€บ docs โ€บ todos
Todos - DummyJSON - Free Fake REST API for Placeholder JSON Data
fetch('https://dummyjson.com/todos/add', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ todo: 'Use DummyJSON in the project', completed: false, userId: 5, }) }) .then(res => res.json()) .then(console.log); ...
๐ŸŒ
GitHub
github.com โ€บ webroo โ€บ dummy-json
GitHub - webroo/dummy-json: Generates random dummy JSON data in Node.js
Generates random dummy JSON data in Node.js. Contribute to webroo/dummy-json development by creating an account on GitHub.
Starred by 376 users
Forked by 61 users
Languages ย  JavaScript 100.0% | JavaScript 100.0%
๐ŸŒ
Reddit
reddit.com โ€บ r/golang โ€บ create a dummy rest api from a json file with zero coding in seconds
r/golang on Reddit: Create a dummy REST API from a json file with zero coding in seconds
August 6, 2020 -

Hello guys, long time lurker on this sub but never posted before.

I created json-server, a CLI tool to create a dummy REST API from a provided json file with zero coding in seconds. For each provided resource 6 full functional endpoints are created (GET x2, POST, PUT, PATCH, DELETE), that you can use right away.

Inspired by the javascript package json-server that's where the name comes from.

The next step is to create the first release, which will include binary files for Windows, Linux and macOS. Any comments/suggestions are really welcomed. You can find more info at README file.

https://github.com/chanioxaris/json-server

๐ŸŒ
JSON:API
jsonapi.org โ€บ examples
JSON:API โ€” Examples
Note: The above example URI shows unencoded [ and ] characters simply for readability. In practice, these characters should be percent-encoded, as noted in the base specification. See โ€œSquare Brackets in Parameter Namesโ€. Here we want articles objects to have fields title, body and author only and people objects to have name field only. HTTP/1.1 200 OK Content-Type: application/vnd.api+json { "data": [{ "type": "articles", "id": "1", "attributes": { "title": "JSON:API paints my bikeshed!", "body": "The shortest article.