> ## Documentation Index
> Fetch the complete documentation index at: https://upstash-cloud-4725.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Backup Analysis

> This endpoint returns the state of a backup's analysis and, once completed, the report. Available for databases on a Pro plan or with the Production Pack.



## OpenAPI

````yaml /devops/developer-api/openapi.yaml get /redis/backup-analysis/{id}/{backupid}
openapi: 3.0.4
info:
  title: Developer API - Upstash
  description: >-
    This is a documentation to specify Developer API endpoints based on the
    OpenAPI 3.0 specification.
  contact:
    name: Support Team
    email: support@upstash.com
  license:
    name: Apache 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0.html
  version: 1.0.0
servers:
  - url: https://api.upstash.com/v2
security: []
tags:
  - name: redis
    description: Manage redis databases.
    externalDocs:
      description: Find out more
      url: https://upstash.com/docs/devops/developer-api/introduction
  - name: teams
    description: Manage teams and team members.
    externalDocs:
      description: Find out more
      url: https://upstash.com/docs/devops/developer-api/introduction
  - name: vector
    description: Manage vector indices.
    externalDocs:
      description: Find out more
      url: https://upstash.com/docs/devops/developer-api/introduction
  - name: search
    description: Manage search indices.
    externalDocs:
      description: Find out more
      url: https://upstash.com/docs/devops/developer-api/introduction
  - name: qstash
    description: Manage QStash.
    externalDocs:
      description: Find out more
      url: https://upstash.com/docs/devops/developer-api/introduction
externalDocs:
  description: Find out more about Upstash
  url: https://upstash.com/
paths:
  /redis/backup-analysis/{id}/{backupid}:
    get:
      tags:
        - redis
      summary: Get Backup Analysis
      description: >-
        This endpoint returns the state of a backup's analysis and, once
        completed, the report. Available for databases on a Pro plan or with the
        Production Pack.
      operationId: getBackupAnalysis
      parameters:
        - name: id
          in: path
          description: The ID of the database
          required: true
          schema:
            type: string
        - name: backupid
          in: path
          description: The ID of the backup
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Analysis state retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BackupAnalysis'
      security:
        - basicAuth: []
components:
  schemas:
    BackupAnalysis:
      type: object
      properties:
        analysis_state:
          type: string
          description: Empty when never analyzed, otherwise pending, completed or failed
          example: completed
        report:
          type: object
          description: >-
            The analysis report, present when completed. Contains totals,
            per-type size and element-count distributions, the biggest keys
            overall and per type, and a TTL profile.
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic

````