How infratmp works
Zero config, zero signup. Just instant infrastructure.
1. Request
POST /v1/sandboxes/valkey
2. Provision
Sandbox spins up in < 2s
3. Ready
"uri": "redis://..."
Terminal to Code
zsh
~
curl -X POST api.infratmp.dev/v1/sandboxes/valkey
> Allocated Valkey instance...
> Ready in 0.84s.
{
"sandbox_id": "valkey-xyz-789",
"uri": "redis://default:pass@valkey.infratmp.dev:6379",
"expires_at": "2026-03-07T18:00:00Z"
}
~
_
# Relational Database (Python)
import
psycopg2
conn = psycopg2.connect(
"postgres://user:pass@ephemeral..."
)
cur = conn.cursor() cur.execute("SELECT version();")
// In-Memory Cache (Go)
import "github.com/redis/go-redis/v9"
rdb := redis.NewClient(&redis.Options{
Addr: "valkey.infratmp.dev:6379",
})
err := rdb.Set(ctx, "key", "value", 0).Err()
// Object Storage (Node.js)
const { S3Client } =
require("@aws-sdk/client-s3");
const s3 = new S3Client({
endpoint: 'https://s3.infratmp.dev',
region: 'us-east-1',
});