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

# Split

> Divides lists into smaller sublists based on batch size

Divides lists into smaller sublists based on batch size

|                     |              |
| ------------------- | ------------ |
| **App**             | List Tools   |
| **Operation ID**    | `list_split` |
| **Type**            | Action       |
| **Connection**      | None         |
| **Credits per run** | Free         |

## Inputs

| Field        | Type                                          | Required | Default | Description                                         |
| ------------ | --------------------------------------------- | -------- | ------- | --------------------------------------------------- |
| `list`       | array (also accepts a comma-separated string) | Yes      | -       | Select the list to split into smaller batches       |
| `batch_size` | integer                                       | Yes      | -       | Size of each batch/sublist (must be greater than 0) |

## Output

**Type**: `List[List]`

Returns list of sublists.
