Skip to content

Introduction

KV Storage is a serverless key-value database with a simple REST API. Store any JSON data and retrieve it instantly from anywhere in the world.

  • Simple REST API - Store, retrieve, list, and delete JSON data
  • Namespace Isolation - Organize data with namespaces
  • API Key Authentication - Secure access with API keys
  • Usage Tracking - Monitor API calls and storage usage
  • Multiple Plans - Free tier and paid plans for scaling
  • Official SDKs - JavaScript/TypeScript client library
Terminal window
# Store a value
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"}}'
# Retrieve a value
curl "https://api.kv.vberkoz.com/v1/myapp/user:123" \
-H "x-api-key: YOUR_API_KEY"
  • User sessions and preferences
  • Feature flags and configuration
  • Cache layer for APIs
  • Real-time counters and analytics
  • Temporary data storage