Simple REST API for storing and retrieving JSON data without managing infrastructure
Just GET, PUT, and DELETE. No complex queries or schemas.
Perfect for Lambda, Cloudflare Workers, and Vercel Edge.
Only pay for what you use. No idle costs.
// Store a value
await fetch('https://api.kv.vberkoz.com/v1/myapp/user:123', {
method: 'PUT',
headers: { 'Authorization': 'Bearer YOUR_API_KEY' },
body: JSON.stringify({ value: { name: 'John' } })
});
// Retrieve a value
const res = await fetch('https://api.kv.vberkoz.com/v1/myapp/user:123', {
headers: { 'Authorization': 'Bearer YOUR_API_KEY' }
});
const data = await res.json();