Skip to content

Authentication

KV Storage uses API keys for authentication.

API keys are used for all KV operations (GET, PUT, DELETE, LIST).

  1. Sign up at dashboard.kv.vberkoz.com
  2. Your API key is automatically generated
  3. Copy it from the dashboard

Include your API key in the x-api-key header:

Terminal window
curl "https://api.kv.vberkoz.com/v1/myapp/key" \
-H "x-api-key: YOUR_API_KEY"
  • Never commit API keys to version control
  • Use environment variables
  • Rotate keys regularly
  • Use different keys for dev/staging/prod