> ## 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 Keys as List

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

The **Get Keys as List** action returns all enumerable top-level keys from an
object in their normal object iteration order.

## Inputs

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

## Outputs

| Output   | Type            | Description                            |
| -------- | --------------- | -------------------------------------- |
| **Keys** | List of strings | The object's top-level property names. |

For `{"name":"Ada","active":true}`, the output is `["name", "active"]`.
Nested keys are not flattened.
