Temporary PostgreSQL API

Postgres now.
Gone later.

Create a real PostgreSQL database in one API call. Give it a TTL, connect immediately, and let Aiadio delete it when you're done.

Create a database with cURL
$ curl -X POST https://api.aiadio.com/v1/databases \
  -H "X-API-Key: dbn_live_your_key" \
  -H "Content-Type: application/json" \
  -d '{"name":"agent-test","expires_in":"1h"}'

# response
{
  "postgres_url": "postgresql://...",
  "status": "ready"
}
API health
Connect and use

Connect with TablePlus. Use it wherever you need Postgres.

Use the returned connection URL in TablePlus or another PostgreSQL client, then hand the database to the workload that needs it.

Connect with TablePlus Standard PostgreSQL
TablePlus with Create connection visible
Copy the returned postgres_url, create a PostgreSQL connection, and connect normally.
AI

AI agents

Give a coding agent a real Postgres database while it builds, migrates and tests.

</>

CI / testing

Create an isolated database for a pipeline or integration test and let TTL handle cleanup.

Preview environments

Attach a disposable database to a branch, preview deployment or temporary environment.

Prototypes

Use real PostgreSQL without setting up long-lived infrastructure for a quick experiment.

API

Use it like normal PostgreSQL.

Aiadio returns standard PostgreSQL connection information. Use it with psql, TablePlus, ORMs, CI jobs and coding agents.

PostgreSQL TLS TTL Individual API keys Automatic cleanup

Traditional platform

Account → project → dashboard → database → remember cleanup.

Aiadio

API key → POST database → connect → TTL cleans it up.

docs / create-database
POST /v1/databases

Headers
X-API-Key: dbn_live_...
Content-Type: application/json

Body
{
  "name": "ci-test",
  "expires_in": "1h",
  "allowed_cidr": "203.0.113.10/32"
}

TTL range
1h → 30d
Simple usage pricing

Pay for the database time you request.

Pricing is dynamic based on the reserved database time. Displayed prices are excluding VAT, and Stripe handles checkout.

24 hour example
$3.60
24 reserved hours · dynamic price · excl. VAT
1–3h: $1.00/hour · 4–24h: total ramps from $3.00 to $3.60 · after 24h: +$0.15/hour
  • PostgreSQL database
  • 24 hour TTL
  • Automatic deletion
  • Individual API key

Secure checkout is hosted by Stripe. The amount is calculated and the Checkout Session is created server-side.

Pricing example

See the hourly math

Pricing Dynamic
Total excl. VAT $3.60

Prices shown exclude VAT. 1–3 hours cost $1.00/hour; 4–24 hours ramp gradually from $3.00 to $3.60 total; each hour above 24 adds $0.15.

Stripe Checkout Card payments and receipts are handled on Stripe's hosted payment page.
stripe
Database status

Check that your database is closed.

Enter your database ID and API key. Aiadio checks the API and tells you whether the database is still active or has been deleted.

  • ready — database is still active.
  • deleted — database is closed and Aiadio usage metering is stopped.
  • The deletion timestamp is shown when available.
Your API key is used only for this request and is not stored by this page. Browser checks require CORS to be enabled on the Aiadio API.