JSON storage as a service.
A RESTful API for flexible storage of JSON data. Allow developers to focus more on app development than on infrastructure management.
Easily store your JSON data.
Using our RESTful API, you can store and retrieve JSON data in your database.

Simple as One. Two. Three.
Leave the data storage to us. We help speed up your development time, letting you build awesome things fast!
Store JSON data
post
With a simple post request, create a json record.
1const urlencoded = new URLSearchParams();
2urlencoded.append("data", {
3 id: "352c6748",
4 name: "John Doe"
5});
6
7fetch("https://api.myjson.online/v0/records", {
8 method: 'POST',
9 body: urlencoded,
10}).then(response => response.text())
11 .then(result => console.log(result))
12 .catch(error => console.log('error', error));
13
Get JSON data
get
You can make a get request to retrieve your json record.
1fetch("https://api.myjson.online/v0/records/:recordId", {
2 method: 'GET',
3}).then(response => response.text())
4 .then(result => console.log(result))
5 .catch(error => console.log('error', error));
6
Update JSON data
put
Update your record with the put request.
1const urlencoded = new URLSearchParams();
2urlencoded.append("data", {
3 id: "657b1790",
4 name: "Jane Doe"
5});
6
7fetch("https://api.myjson.online/v0/buckets/records/:recordId", {
8 method: 'PUT',
9 body: urlencoded,
10}).then(response => response.text())
11 .then(result => console.log(result))
12 .catch(error => console.log('error', error));
13
post
With a simple post request, create a json record.
get
You can make a get request to retrieve your json record.
put
Update your record with the put request.
1const urlencoded = new URLSearchParams();
2urlencoded.append("data", {
3 id: "352c6748",
4 name: "John Doe"
5});
6
7fetch("https://api.myjson.online/v0/records", {
8 method: 'POST',
9 body: urlencoded,
10}).then(response => response.text())
11 .then(result => console.log(result))
12 .catch(error => console.log('error', error));
13
Some popular use cases
Prototyping
Quickly develop your new application and add persistence to it without worrying about the backend.
Remote config
Store user preferences and application configuration in the cloud.
CMS
Build a website and use myJson to store your content.
IoT
Allow your IoT device to read and create data.
Hackathon
Add persistence to your hackathon application.
Dashboard
Build a web application dashboard and store your data in myJson.
Simple pricing, for everyone.
myJson is free while in beta and will later offer a free plan.
Frequently asked questions
If you can’t find what you’re looking for, use the bottom-right live-chat.
What is myJSON?
It's a solution that allow you to store your data in a JSON format. All operation can be done via our RESTful api.
What is a record?
A record is a JSON object.
What is a bucket?
Bucket are JSON object to store your records.