setget.net
simple key-value storage for developers
no authentication. no configuration. no complexity.
Simple HTTP API
All operations use simple HTTP requests. No special tools required.
Store a Value
/set/your-keyPOST /set/my-noteBody: "Remember to buy milk"→ {"id": "my-note", "status": "ok"}
Retrieve a Value
/get/your-keyGET /get/my-note→ {"id": "my-note", "value": "Remember to buy milk"}
Password Protected
/set/your-key?password=secretProtection: Password required to retrieve
POST /set/api-key?password=mypassBody: "sk-abc123xyz"→ {"id": "api-key", "status": "ok"}
Get Protected Value
/get/your-key?password=secretReturns: Protected data or 401 error
GET /get/api-key?password=mypass→ {"id": "api-key", "value": "sk-abc123xyz"}
Check the docs for custom TTL, JSON detection, and advanced features
10 requests/second per IP. If exceeded, check Retry-After header or retry_after in response body for wait time
Use UUIDs or random strings for sensitive data privacy
Features
Lightning Fast
Redis-backed storage. Set and get in milliseconds. Because your time matters.
Zero Friction
No API keys. No registration. No tracking. Just pure, unadulterated data transfer.
Smart TTL
Keys expire after 3 months of inactivity (max: 1 year). Automatic cleanup keeps storage efficient.
Universal Access
HTTP-based API works everywhere. Command line, scripts, apps, games, automation - your choice.
Any Data Type
Text, JSON, Base64, binary. We store bytes. You decide what they mean.
Privacy by Design
Your key is your secret. Use UUIDs or random strings for sensitive data.
Use Cases
Cross-Device Data Sync
Share configuration, state, or clipboard data between devices without complex setup or cloud accounts.
CI/CD Integration
Pass build artifacts, deployment flags, or test results between pipeline stages without complex infrastructure.
Game Development
Share player data, leaderboards, or configuration between game servers and clients with minimal overhead.
Home Automation
Exchange sensor readings, device states, or triggers between IoT devices and control systems.
Ready to start?
No signup. No complexity. Just instant key-value storage.