GET
/
redis
/
list-backup
/
{id}
List Backup
curl --request GET \
  --url https://api.upstash.com/v2/redis/list-backup/{id} \
  --header 'Authorization: Basic <encoded-value>'
[
  {
    "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": ""
  }
]

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

id
string
required

The ID of the Redis database

Response

200 - application/json

Backups retrieved successfully

database_id
string

ID of the database

Example:

"6gcqwafd-9627-4ec2-4g51-b1429h59c8d4"

customer_id
string

Customer ID

Example:

"example@upstash.com"

name
string

Name of the backup

Example:

"test"

backup_id
string

ID of the backup

Example:

"1d62p45b-c567-1239-b23e-449ads33a62e"

creation_time
integer

Creation time of the backup as Unix time

Example:

1757000716

state
enum<string>

State of the backup

Available options:
pending,
completed,
failed
Example:

"pending"

backup_size
integer

Size of the backup

Example:

0

daily_backup
enum<string>

Daily backup status

Available options:
true,
false
Example:

"false"

hourly_backup
enum<string>

Hourly backup status

Available options:
true,
false
Example:

"false"

internal_backup_tag
string

Internal backup tag

Example:

""