Skip to main content
GET
/
api
/
v1
/
databases
List databases
curl --request GET \
  --url https://api.example.com/api/v1/databases
Returns all databases belonging to the authenticated user, ordered by creation date (newest first).

Response

200 OK
[
  {
    "id": "550e8400-e29b-41d4-a716-446655440000",
    "name": "my-app",
    "displayName": "My Application",
    "status": "active",
    "sizeBytes": 8388608,
    "createdAt": "2026-03-19T12:00:00.000Z"
  }
]
Returns an empty array if the user has no databases.