Quick Start
Get your first API call working in under 2 minutes.
1. Create Account
Section titled “1. Create Account”Sign up at dashboard.kv.vberkoz.com
2. Get API Key
Section titled “2. Get API Key”Your API key is automatically generated on the dashboard. Copy it.
3. Create Namespace
Section titled “3. Create Namespace”# Via dashboard or APIPOST /v1/namespaces{ "name": "myapp" }4. Store Data
Section titled “4. Store Data”curl -X PUT "https://api.kv.vberkoz.com/v1/myapp/user:123" \ -H "x-api-key: YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{"value":{"name":"John","email":"john@example.com"}}'5. Retrieve Data
Section titled “5. Retrieve Data”curl "https://api.kv.vberkoz.com/v1/myapp/user:123" \ -H "x-api-key: YOUR_API_KEY"Using JavaScript SDK
Section titled “Using JavaScript SDK”npm install @kv-storage/clientimport { KVClient } from '@kv-storage/client';
const kv = new KVClient('YOUR_API_KEY');
await kv.put('myapp', 'user:123', { name: 'John' });const { value } = await kv.get('myapp', 'user:123');