Store and retrieve data with single-digit millisecond latency. A simple HTTP API that just works.
A complete key-value storage solution designed for simplicity and performance.
Just use curl or any HTTP client. No SDK required.
# Store a value
curl -X PUT https://api.keyvalue.dev/v1/kv/mykey \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{"hello": "world"}'
# Retrieve a value
curl https://api.keyvalue.dev/v1/kv/mykey \
-H "Authorization: Bearer YOUR_TOKEN"
# Delete a value
curl -X DELETE https://api.keyvalue.dev/v1/kv/mykey \
-H "Authorization: Bearer YOUR_TOKEN"That's all you need to know.
Start storing data in minutes. No complex setup, no maintenance headaches.
Start Building