setget.net

simple key-value storage for developers
no authentication. no configuration. no complexity.

2108 active keys

Simple HTTP API

All operations use simple HTTP requests. No special tools required.

POST

Store a Value

/set/your-key
Body: Your data (text, JSON, binary)
Example:
POST /set/my-note
Body: "Remember to buy milk"

→ {"id": "my-note", "status": "ok"}
GET

Retrieve a Value

/get/your-key
Returns: Your stored data
Example:
GET /get/my-note

→ {"id": "my-note", "value": "Remember to buy milk"}
POST

Password Protected

/set/your-key?password=secret
Body: Your sensitive data
Protection: Password required to retrieve
Example:
POST /set/api-key?password=mypass
Body: "sk-abc123xyz"

→ {"id": "api-key", "status": "ok"}
GET

Get Protected Value

/get/your-key?password=secret
Required: Correct password
Returns: Protected data or 401 error
Example:
GET /get/api-key?password=mypass

→ {"id": "api-key", "value": "sk-abc123xyz"}
💡 More Options

Check the docs for custom TTL, JSON detection, and advanced features

🚀 Rate Limits

10 requests/second per IP. If exceeded, check Retry-After header or retry_after in response body for wait time

🔑 Key Names

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.

Example: Sync game save states, app settings, or automation scripts
🔄

CI/CD Integration

Pass build artifacts, deployment flags, or test results between pipeline stages without complex infrastructure.

Example: Store build status, artifact URLs, or deployment timestamps
🎮

Game Development

Share player data, leaderboards, or configuration between game servers and clients with minimal overhead.

Example: Temporary matchmaking data, session tokens, or server lists
🏠

Home Automation

Exchange sensor readings, device states, or triggers between IoT devices and control systems.

Example: Temperature readings, motion detection flags, or scheduled tasks

Ready to start?

No signup. No complexity. Just instant key-value storage.