Backup

List Backup

This endpoint lists all backups for a Redis database.

GET/v2/redis/list-backup/{id}
cURL
curl --request GET \
  --url https://api.upstash.com/v2/redis/list-backup/{id} \
  --header 'Authorization: Bearer <token>'
200Response
[
  {
    "database_id": "6gcqwafd-9627-4ec2-4g51-b1429h59c8d4",
    "customer_id": "example@upstash.com",
    "name": "test",
    "backup_id": "1d62p45b-c567-1239-b23e-449ads33a62e",
    "creation_time": 1757000716,
    "state": "pending",
    "backup_size": 0,
    "daily_backup": "false",
    "hourly_backup": "false",
    "internal_backup_tag": ""
  }
]

Authorization

Authorizationheaderstringrequired

Bearer authentication header of the form Bearer <token>.

Path parameters

idpathstringrequired

The ID of the Redis database

Response

200 — Backups retrieved successfully

Loading search…