Try it out
→Generate your token to get started
23 bytes / 100 KB
What is Key-Value?
○No signup required - Generate tokens instantly with bot protection
○100 KB free storage - Store any JSON data with optional expiration (TTL)
○Memorable tokens - Human-friendly 5-word tokens from 7,776-word dictionary
○Production-ready security - SHA-256 hashing, persistent rate limiting, password complexity
○Full REST API - Store, retrieve, delete endpoints with TypeScript types
○Smart rate limiting - 20 updates/min, 100 retrievals/hour, persists across restarts
# Generate a token
curl -X POST https://key-value.co/api/generate \
-H "Content-Type: application/json" \
-d '{}'
# Store data
curl -X POST https://key-value.co/api/store \
-H "Content-Type: application/json" \
-H "X-KV-Token: your-token" \
-d '{"data":{"key":"value"}}'
# Retrieve data
curl https://key-value.co/api/retrieve \
-H "X-KV-Token: your-token"