---
title: "Get all backup logs"
method: GET
path: "/backup-logs/"
tags: ["General APIs with JWT"]
---

# Get all backup logs

`GET /backup-logs/`

Endpoint to get all backup logs for a user with optional filtering by executor_id, search (searches in both name and description), backup_type (automatic/manual), and status.

## Query parameters

- `page` integer
- `limit` integer
- `pod_id` string, uuid, nullable
- `search` string, nullable
- `backup_type` string, nullable
- `status` string, nullable

## Response `200`

Backup logs retrieved successfully

- PaginatedResponseBackupLogEnhancedResponse
  - `items` BackupLogEnhancedResponse[], required
    - `id` string, uuid, required
    - `name` string, nullable
    - `description` string, nullable
    - `status` string, required
    - `progress` number, required
    - `started_at` string, date-time, nullable
    - `completed_at` string, date-time, nullable
    - `error_message` string, nullable
    - `created_at` string, date-time, required
    - `estimated_backup_size_bytes` integer, nullable
    - `estimated_upload_seconds` integer, nullable
    - `backup_estimate_warning_code` string, nullable
    - `s3_verified_at` string, date-time, nullable
    - `s3_content_length` integer, nullable
    - `s3_last_modified` string, date-time, nullable
    - `s3_etag` string, nullable
    - `backup_engine` string, required
    - `snapshot_id` string, nullable
    - `result_quality` string, nullable
    - `stage` string, nullable
    - `last_heartbeat_at` string, date-time, nullable
    - `total_files` integer, nullable
    - `processed_files` integer, nullable
    - `total_bytes` integer, nullable
    - `processed_bytes` integer, nullable
    - `deletion_state` string, nullable
    - `physical_cleanup_at` string, date-time, nullable
    - `status_message` string, nullable
    - `elapsed_seconds` integer, nullable
    - `throughput_bytes_per_second` integer, nullable
    - `estimated_remaining_seconds` integer, nullable
    - `pod_id` string, uuid, required
    - `backup_type` string, required
  - `total_count` integer, required
  - `page` integer, required
  - `limit` integer, required
  - `total_pages` integer, required
  - `has_next` boolean, required
  - `has_prev` boolean, required

## Other responses

- `422` — Validation Error
- `500` — Internal server error

---

[API](https://skmtc.dev/lium/apis/lium-backend-api.md) · [All operations](https://skmtc.dev/lium/apis/lium-backend-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/lium/lium-backend-api/revisions/57db0a9348db/schema)
