## Retrieve `gpu_droplets.snapshots.retrieve(Union[int, str]snapshot_id) -> SnapshotRetrieveResponse` **get** `/v2/snapshots/{snapshot_id}` To retrieve information about a snapshot, send a GET request to `/v2/snapshots/$SNAPSHOT_ID`. The response will be a JSON object with a key called `snapshot`. The value of this will be an snapshot object containing the standard snapshot attributes. ### Parameters - **snapshot\_id:** `Union[int, str]` The ID of a Droplet snapshot. - **SnapshotIDUnionMember0:** `int` The ID of a Droplet snapshot. - **SnapshotIDUnionMember1:** `str` The ID of a volume snapshot. ### Returns - `class SnapshotRetrieveResponse` - **snapshot:** `Optional[Snapshots]` ### Example ```python from do_gradientai import GradientAI client = GradientAI() snapshot = client.gpu_droplets.snapshots.retrieve( 6372321, ) print(snapshot.snapshot) ```