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

# List Presets

> List every saved transform preset with dreep.listPresets().

```ts theme={null}
const presets = await dreep.listPresets();
```

## Parameters

Takes no arguments beyond an optional `signal`.

```ts theme={null}
await dreep.listPresets({ signal });
```

## Returns

```ts theme={null}
[
  { id: "…", key: "thumbnail", name: "Thumbnail", params: { width: 200, … } },
]
```

Use `key` when applying a preset, and `id` when
[deleting](/node-sdk/presets/delete-preset) one.
