List the databases in your organization. Each organization gets one database per stage (production + development), provisioned automatically when the organization is created.
/organizations/:orgId/databasesReturns all databases for the organization. `stage` is either `production` or `development`.
{
"databases": [
{
"id": "db_abc123",
"name": "My Database",
"stage": "production",
"createdAt": "2026-03-20T...",
"updatedAt": "2026-03-20T..."
},
{
"id": "db_def456",
"name": "My Database",
"stage": "development",
"createdAt": "2026-03-20T...",
"updatedAt": "2026-03-20T..."
}
]
}