Integrations

Use your PostgreSQL databases directly from Claude, Cursor, VS Code, and any REST client. No backend glue code required.

30-second quick start — no account needed

Spin up a throwaway Postgres and run SQL, all over HTTP.

# Create a database (auto-deletes in 5 min)
curl -s -X POST https://api.dbaas.dev/v1/ephemeral/create \
  -H "Content-Type: application/json" \
  -d '{"ttl":5}' | jq '{id:.data.id, user:.data.username, pass:.data.password}'

# Poll until status=running (~30s), then run SQL
curl -s -X POST https://api.dbaas.dev/v1/ephemeral/<id>/sql \
  -H "Content-Type: application/json" \
  -d '{"sql":"SELECT version()"}' | jq .data.rows