Serverless Key-Value Storage API

Simple REST API for storing and retrieving JSON data without managing infrastructure

Why KV Storage?

Simple API

Just GET, PUT, and DELETE. No complex queries or schemas.

Serverless Ready

Perfect for Lambda, Cloudflare Workers, and Vercel Edge.

Pay Per Request

Only pay for what you use. No idle costs.

Quick Start

// 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();

Simple Pricing

Start free, scale as you grow

Free

$0/mo

  • 10K requests/month
  • 100MB storage
  • Community support
Get Started

Starter

$5/mo

  • 100K requests/month
  • 1GB storage
  • Email support
Upgrade
Popular

Pro

$15/mo

  • 1M requests/month
  • 10GB storage
  • Priority support
Upgrade

Scale

$49/mo

  • 10M requests/month
  • 100GB storage
  • 99.9% SLA
Upgrade

Business

$149/mo

  • Custom requests
  • Custom storage
  • Dedicated support
Contact Sales