Getting information about Ephemeral databases

Getting a list of databases

To retrieve a list of Ephemeral databases, use:

GET /api/database

You can optionally provide query parameters to filter the list based on the database name, database type, and database status.

The response contains the list of databases. For each database, the response includes:

  • Database identifier

  • Database status

  • Database configuration

  • Connection information

  • List of snapshots

Getting information about a specific database

To get detailed information about an Ephemeral database, use:

GET /api/database/{id}

The response provides details about the specified database, including:

  • Database identifier

  • Database status

  • Database configuration

  • Connection information

  • List of snapshots

Last updated