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

# Snapshots auflisten

> Rufen Sie eine Liste aller Snapshots ab.

<ParamField header="Authorization" type="string" placeholder="API Key" required>
  Der API-Schlüssel für Ihr Konto. Sie finden ihn in Ihren [Kontoeinstellungen](https://squarecloud.app/de/account/security).
</ParamField>

### Parameter

<ParamField query="scope" type="string" default="applications">
  Gibt den Typ der abzurufenden Snapshots an.

  * `applications` (Standard): Gibt Snapshots von Anwendungen zurück
  * `databases`: Gibt Snapshots von Datenbanken zurück
</ParamField>

### Antwort

<ResponseField name="status" type="string">
  Gibt an, ob der Aufruf erfolgreich war. `success` bei Erfolg, `error` andernfalls.
</ResponseField>

<ResponseField name="response" type="object">
  Der Inhalt der Antwort.

  <Expandable title="Objekt umschalten">
    <ResponseField name="name" type="string">
      Die ID der Anwendung, zu der der Snapshot gehört.
    </ResponseField>

    <ResponseField name="size" type="number">
      Größe des Snapshots in Bytes.
    </ResponseField>

    <ResponseField name="modified" type="string">
      Datum der letzten Änderung des Snapshots.
    </ResponseField>

    <ResponseField name="key" type="string">
      AWS-Zugriffsschlüssel für den Snapshot.
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseExample>
  ```json Response theme={null}
  {
    "status": "success",
    "response": [
      {
        "name": "1d2cdc0d6ebd435c91315c6329d12eab",
        "size": 12900705,
        "modified": "2024-06-27T06:23:42.326Z",
        "key": "AWSAccessKeyId=accesskey"
      },
      {
        "name": "1d2cdc0d6ebd435c91315c6329d12eab",
        "size": 12900705,
        "modified": "2024-06-26T07:05:40.000Z",
        "key": "AWSAccessKeyId=accesskey"
      }
    ]
  }
  ```
</ResponseExample>

<Note>Das Format der URL zum Herunterladen des gewünschten Snapshots lautet: [https://snapshots.squarecloud.app/applications/\{accountID}/\{name}.zip?\{key}](https://snapshots.squarecloud.app/applications/\{accountID}/\{name}.zip?\{key})</Note>
