freeapis

JSONbin.io

Free JSON storage service. Ideal for small scale Web apps, Websites and Mobile apps

Authentication
API Key
HTTPS
Yes
CORS
Yes
Category
Development
Documentation / URL
https://jsonbin.io

Overview

JSONbin.io is a free JSON storage service — store, read, update, and delete JSON documents with a REST API, plus collection support. A key is required (requests without one return 404, verified) — it’s a handy “instant backend” for prototypes and small tools.

Quick Start

Create a bin (replace YOUR_KEY):

curl -X POST "https://api.jsonbin.io/v3/b" \
  -H "Content-Type: application/json" \
  -H "X-Master-Key: YOUR_KEY" \
  -d '{"hello": "world"}'
{
  "record": { "hello": "world" },
  "metadata": { "id": "65abc...", "private": true, "createdAt": "..." }
}

Read a bin:

curl "https://api.jsonbin.io/v3/b/BIN_ID" \
  -H "X-Master-Key: YOUR_KEY"

Update:

curl -X PUT "https://api.jsonbin.io/v3/b/BIN_ID" \
  -H "Content-Type: application/json" \
  -H "X-Master-Key: YOUR_KEY" \
  -d '{"hello": "updated"}'

Authentication

  • Register at jsonbin.io → your Master Key (in the dashboard).
  • Send it as the X-Master-Key header (missing key → 404, verified).
  • Collection API (/v3/c) organizes bins into groups.

Rate Limits & Notes

  • Free tier: limited reads/writes per day (check the dashboard — modest); paid plans scale.
  • Bins are JSON documents (max size on free tier ~small KBs — check current limits).
  • The X-Master-Key grants full access — X-Collection-Id scopes to a collection.
  • Great for config storage, quick mock backends, and hobby projects.

FAQ

Is JSONbin.io free? Free tier with daily limits; paid plans scale.

How do I get a key? Register at jsonbin.io — the Master Key is in your dashboard.

Why 404 without a key? The API treats missing auth as “not found” (verified) — always send X-Master-Key.

More in Development

APIAuthHTTPSCORS
24 Pull Requests

Project to promote open source collaboration during December

No authYesYes
Agify.io

Estimates the age from a first name

No authYesYes
Amazonscraperapi

Amazon product, search & batch scraping API with residential proxies (1000 free)

API KeyYesNo
AmberOne

Turn any website into a build-ready Android, iOS, PWA or Electron app project

API KeyYesNo
API Grátis

Multiples services and public APIs

No authYesUnknown