---
title: "List backup schedules"
method: GET
path: "/api/v1/backup-schedules"
tags: ["Backup Schedules"]
---

# List backup schedules

`GET /api/v1/backup-schedules`

List backup schedules for the authenticated account. Filter by VM.

Pass `X-Project-ID` to scope the list to a single project. When omitted, returns schedules across every project the API key has access to.

## Query parameters

- `vm_id` string, uuid
- `limit` integer
- `offset` integer

## Headers

- `X-Project-ID` string, uuid

## Response `200`

List of backup schedules

- object
  - `success` boolean
  - `data` BackupSchedule[]
    - `id` integer, required — Backup schedule ID. Use this value in `/backup-schedules/{id}` for get, update, and delete.
    - `account_id` string, uuid
    - `project_id` string, uuid
    - `created_by` string
    - `region` 'us-east'
    - `product_vm` string, uuid — Source VM UUID
    - `name` string, required — Schedule display name
    - `type` 'daily' | 'weekly', required — Schedule frequency
    - `runtime` string — Human-readable schedule (e.g. `Daily at 8am`, `Saturday 8am`)
    - `keep_count` integer, required — Number of backups retained before auto-pruning
    - `price_per_hour` string — Hourly cost in USD
    - `size` string — Total size of backups currently retained for this schedule
    - `created_at` string, date-time
  - `total` integer

## Other responses

- `401` — Authentication required

---

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