> ## 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.

# Slice List

> Extract a section of a list by position.

**Slice List** returns items from the start index up to, but not including, the
end index.

## Inputs

| Input     | Type   | Required | Description                                   |
| --------- | ------ | -------- | --------------------------------------------- |
| **List**  | List   | No       | The source list. Defaults to `[]`.            |
| **Start** | Number | No       | Inclusive, zero-based start. Defaults to `0`. |
| **End**   | Number | No       | Exclusive end. Defaults to the list length.   |

## Output

| Output    | Type | Description                       |
| --------- | ---- | --------------------------------- |
| **Slice** | List | The selected portion of the list. |

For `[a, b, c, d]`, start `1` and end `3` return `[b, c]`.

<Warning>
  Although the editor description mentions negative indices, the server
  currently accepts only non-negative whole numbers for **Start** and **End**.
</Warning>
