> ## Documentation Index
> Fetch the complete documentation index at: https://docs.falkordb.com/llms.txt
> Use this file to discover all available pages before exploring further.

> ## Agent Instructions
> FalkorDB is a graph database that speaks the Redis protocol. Queries are issued as OpenCypher through the GRAPH.QUERY and GRAPH.RO_QUERY commands, not over Bolt or a SQL connection.
> FalkorDB implements a subset of OpenCypher with proprietary extensions. Do not assume Neo4j-only syntax or procedures are available — check /cypher/cypher-support and /cypher/known-limitations before using a clause.
> FalkorDB is the successor to RedisGraph, but they are separate products. Do not present RedisGraph commands, versions, or limitations as current FalkorDB behavior.
> Use the official clients listed in /getting-started/clients rather than generic Redis or Neo4j drivers, and prefer the language the user is already working in.
> Configuration parameters are set with GRAPH.CONFIG SET or at startup; cite the exact parameter name from /getting-started/configuration rather than inventing one.
> This site covers four products: FalkorDB (core), FalkorDB Cloud, FalkorDB Enterprise, and the GraphRAG SDK. Name which one an answer applies to, since setup and operations differ.

# Describe snapshot

> Retrieve the details and progress of a snapshot.

Returns a single snapshot, including its completion progress.

## Authorization

<ParamField header="Cookie" type="string" required>
  Session cookie set by [Sign in](/cloud/api-reference/authentication/signin): `omnistrate_token=<jwt>`.
</ParamField>

## Path parameters

<ParamField path="id" type="string" required>
  ID of the snapshot.
</ParamField>

## Query parameters

<ParamField query="subscriptionId" type="string">
  Subscription that owns the snapshot.
</ParamField>

## Response

<ResponseField name="snapshotId" type="string">
  ID of the snapshot.
</ResponseField>

<ResponseField name="sourceInstanceId" type="string">
  ID of the deployment instance the snapshot was taken from.
</ResponseField>

<ResponseField name="snapshotType" type="string">
  `ManualSnapshot` or `AutomatedSnapshot`.
</ResponseField>

<ResponseField name="status" type="string">
  Status of the snapshot.
</ResponseField>

<ResponseField name="progress" type="number">
  Backup progress, from 0 to 100.
</ResponseField>

<ResponseField name="encrypted" type="boolean">
  Whether the snapshot is encrypted.
</ResponseField>

<ResponseField name="cloudProvider" type="string">
  Cloud provider that stores the snapshot.
</ResponseField>

<ResponseField name="region" type="string">
  Region the snapshot is stored in.
</ResponseField>

<ResponseField name="createdTime" type="string">
  Time the snapshot was started.
</ResponseField>

<ResponseField name="completeTime" type="string">
  Time the snapshot completed.
</ResponseField>

<ResponseField name="serviceId" type="string">
  ID of the service.
</ResponseField>

<ResponseField name="serviceName" type="string">
  Name of the service.
</ResponseField>

<ResponseField name="productTierId" type="string">
  ID of the product tier.
</ResponseField>

<ResponseField name="productTierName" type="string">
  Name of the product tier.
</ResponseField>

<ResponseField name="productTierVersion" type="string">
  Version of the product tier the snapshot was taken on.
</ResponseField>

<ResponseField name="subscriptionId" type="string">
  ID of the subscription that owns the snapshot.
</ResponseField>

<ResponseField name="outputParams" type="object[]">
  Custom output parameters recorded with the snapshot.
</ResponseField>

<ResponseField name="snapshotMetadata" type="object">
  Additional metadata stored for the snapshot.
</ResponseField>

## Errors

See [Error](/cloud/api-reference/schemas#error) for the error response shape.
