---
title: "Get a list of backups for site"
method: GET
path: "/v1/sites/{id}/backup"
tags: ["Backups"]
---

# Get a list of backups for site

`GET /v1/sites/{id}/backup`

For a given site list all manually created backups

## Path parameters

- `id` integer, required — ID of the Site you are interacting with

## Query parameters

- `task_id` string
- `search` string
- `status` string — One or more statuses to filter by. If more than one status, use a comma-separated list
- `page` integer — Page of results to include (default = 1)
- `per_page` integer
- `sort` 'created_at' | 'id' | 'label' | 'status' — Sort results by the following property
- `direction` 'asc' | 'desc' | 'ASC' | 'DESC' — Direction to sort results in (asc = ascending, desc = descending)

## Response `200`

OK

- ListBackupResponse
  - `success` boolean — whether the request succeeded
  - `errors` string[]
  - `messages` string[], nullable
  - `metadata` object
    - `page` integer — Page number of the results
    - `page_size` integer — Number of results per page
    - `total` integer — Total number of results
    - `sort` string — Sorting criteria
    - `direction` 'asc' | 'desc' — Sorting direction
  - `result` ManualBackup[]
    - `id` integer — ID of the backup
    - `label` string — Label / Name of the backup
    - `download_link` string — Link that can be used to download the backup
    - `status` 'NEW' | 'PROGRESS' | 'DONE' | 'ERROR' | 'RESTORING' — Status of the backup (NEW - task created, PROGRESS - backup in progress, DONE - backup complete, ERROR - backup failed, RESTORING - backup currently being restored)
    - `created` string — Date and time that the backup was created at (UTC)
    - `site_id` integer — ID of the site the backup is a backup of
    - `task_id` string — ID of the task that was used to create this backup

## Other responses

- `400` — Bad Request
- `401` — Authentication failed
- `403` — Not authorized to access endpoint
- `404` — Given site not found for user
- `405` — Invalid input
- `500` — Internal error

---

[API](https://skmtc.net/rocket/apis/rocket-net-api.md) · [All operations](https://skmtc.net/rocket/apis/rocket-net-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/rocket/rocket-net-api/revisions/db0dcbbc5764/schema)
