postgres_url,
create a PostgreSQL connection,
and connect normally.
Create a real PostgreSQL database in one API call. Give it a TTL, connect immediately, and let Aiadio delete it when you're done.
$ 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"
}
Use the returned connection URL in TablePlus or another PostgreSQL client, then hand the database to the workload that needs it.
postgres_url,
create a PostgreSQL connection,
and connect normally.
Give a coding agent a real Postgres database while it builds, migrates and tests.
Create an isolated database for a pipeline or integration test and let TTL handle cleanup.
Attach a disposable database to a branch, preview deployment or temporary environment.
Use real PostgreSQL without setting up long-lived infrastructure for a quick experiment.
Aiadio returns standard PostgreSQL connection information. Use it with psql, TablePlus, ORMs, CI jobs and coding agents.
Account → project → dashboard → database → remember cleanup.
API key → POST database → connect → TTL cleans it up.
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
Pricing is dynamic based on the reserved database time. Displayed prices are excluding VAT, and Stripe handles checkout.
Secure checkout is hosted by Stripe. The amount is calculated and the Checkout Session is created server-side.
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.
Enter your database ID and API key. Aiadio checks the API and tells you whether the database is still active or has been deleted.