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();")