Retrieve and update JSON data through a simple REST API. Create bins in the dashboard, then access them anywhere with your API key.
A simple database alternative for lightweight data needs
Store application configuration, feature flags, and settings. Update remotely without redeploying your app.
Build working prototypes with real data persistence. No backend setup needed - just start coding.
Capture and store webhook payloads for debugging, logging, or later processing.
Share JSON data between services, team members, or applications with a simple URL.
Everything you need for JSON storage
{
"status": "ok",
"data": {
"appConfig": {
"theme": "dark",
"language": "en",
"features": {
"analytics": true,
"notifications": true,
"betaFeatures": false
},
"version": "2.1.0"
}
}
}Get started with JSON Bins in three steps
Log into the APIVerve dashboard and create a new JSON bin with your initial data.
Copy your unique bin ID. Use it with your API key to access the data.
Use GET to retrieve and PUT to update your bin data from any application.
Works with any language or framework
const response = await fetch(
'https://api.apiverve.com/v1/jsonbin/YOUR_BIN_ID',
{
headers: {
'x-api-key': 'YOUR_API_KEY'
}
}
);
const { data } = await response.json();
console.log('Config:', data);const response = await fetch(
'https://api.apiverve.com/v1/jsonbin/YOUR_BIN_ID',
{
method: 'PUT',
headers: {
'x-api-key': 'YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
theme: 'light',
notifications: false
})
}
);
const result = await response.json();
console.log('Updated:', result);The right tool for lightweight data needs
| Feature | JSON Bins | Traditional Database |
|---|---|---|
| Setup Time | Instant | Hours to Days |
| Infrastructure | None Required | Server + Maintenance |
| Learning Curve | REST API (familiar) | SQL/NoSQL + ORM |
| Best For | Prototypes, Config, Simple Data | Complex Queries, Relations |
| Cost | Free Tier Available | $$/month minimum |
JSON Bins is a simple JSON storage service. Create bins through the dashboard, then read and update them via REST API using your API key.
Create bins through the APIVerve dashboard. Once created, you can read and update the bin data via the REST API using your API key.
Yes! JSON Bins is included free with APIVerve's free tier (100 credits/month). It uses the same credit pool as all 300+ APIVerve APIs.
Yes. All bin access requires your API key for security. Get your free API key by signing up at dashboard.apiverve.com.
JSON Bins is just one of 300+ APIs included with your APIVerve subscription. Weather, email validation, IP lookup, and more - all with one API key and one billing.