Sofa
Admin

List backups

Fetch all database backups with their sizes and creation times.

GET
/admin/backups
better-auth.session_token<token>

Better Auth session cookie

In: cookie

Response Body

application/json

curl -X GET "http://localhost:3000/api/v1/admin/backups"
{
  "backups": [
    {
      "filename": "string",
      "sizeBytes": 0,
      "createdAt": "string",
      "source": "manual"
    }
  ]
}