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

# List All Snapshots of the Account

> Lists every snapshot of the account's applications or databases, grouped by resource. Requires the snapshots:read scope.

Returns the snapshots of every application (or every database) you own, grouped by resource. To
list the snapshots of a single resource, use [Get Snapshots](/api-reference/endpoint/apps/snapshots/getall).

<ParamField query="scope" type="string">
  `applications` (default) or `databases`.
</ParamField>

### Response

<ResponseField name="response" type="array">
  One entry per resource that has at least one snapshot.

  <Expandable title="Toggle object">
    <ResponseField name="resource_id" type="string">The ID of the application or database.</ResponseField>
    <ResponseField name="current_resource_name" type="string | null">The resource's current name, or `null` if it no longer exists.</ResponseField>
    <ResponseField name="type" type="number">`1` for applications, `2` for databases.</ResponseField>

    <ResponseField name="snapshots" type="array">
      The resource's snapshots: `id`, `resource_id`, `resource_name` (the name when the snapshot was taken), `size` and `date`.
    </ResponseField>
  </Expandable>
</ResponseField>
