# List Snapshots

Launch stage: Beta

`GET /api/2.0/postgres/{parent=projects/*}/snapshots`

Returns a paginated list of snapshots in the project.

API scopes: postgres

## Path parameters

- `parent` (string, required)
  The project that owns the snapshots.
   Format: projects/{project_id}

## Query parameters

- `page_token` (string, optional)
  Page token from a previous response; omit for the first page.
- `page_size` (int32, optional)
  Maximum number of snapshots to return per page.

## Returns

Returns a list of Snapshot objects.

## Response

```json
{
  "snapshots": [
    {
      "name": "string",
      "uid": "string",
      "create_time": "string",
      "spec": {},
      "status": {},
      "snapshot_id": "string"
    }
  ],
  "next_page_token": "string"
}
```

