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

# Get Values as List

> Return an object's top-level values in a list.

The **Get Values as List** action returns the values of an object's enumerable
top-level properties. Their order corresponds to **Get Keys as List** for the
same object.

## Inputs

| Input      | Type   | Required | Description            |
| ---------- | ------ | -------- | ---------------------- |
| **Object** | Object | Yes      | The object to inspect. |

## Outputs

| Output     | Type        | Description                    |
| ---------- | ----------- | ------------------------------ |
| **Values** | List of any | The object's top-level values. |

For `{"name":"Ada","active":true}`, the output is `["Ada", true]`. Nested
objects remain individual values.
