Frequently Asked Questions

How does jsonSaver work?

Simply register an account and confirm your email, and you can create and manage your JSON stores using either the web client or the API.

Does my store data expire?

As of now, the data will not expire or be removed from the database. However, it is always a good idea to keep another backup of any important data.

How can I access the data created using this service?

Where is my API key?

Your API key can be found in your user profile page.

How do I use my API key?

Simply include the following key-value pair in your HTTP header when making an API request to one of our endpoints:
Authorization: Token [your_api_key]

Example Using Javascript Fetch:

Create a new publicly-accessible JSON store:

let jsonStoreData = fetch('https://jsonsaver.com/api/v1/jsonstore/', {
  method: "POST",
  headers: {
    'Content-Type': 'application/json; charset=UTF-8',
    'Authorization': 'Token e57af3bd58a56f21e9f888273546b82e7aed34cd'
  },
  body: {
    "name": "hello-world",
    "data": {
      "message": "Hello World!"
    },
    "is_public": true
  })
  .then(res => res.json())

How can I get a new API key?

You can renew your API key here.

Where is the API schema?

The API schema can be found here.

How much does this cost?

This service is currently free.

Can I create a public JSON store?

Yes, you can choose to create a publicly-accessible JSON store that can be looked up via a unique user-chosen name.

Is my data private?

Any JSON stores you create are private by default. However, we recommend encrypting any sensitive data before uploading it.