🎯
Get List Item
base.list.getBase SetUtilityReturns the item at a zero-based index — 0 is first, 1 is second, and so on. Great for showing the top scorer or a random pick you already stored.
On the canvas
This is what Get List Item looks like when you place it on your flow. Each field below is something you configure in the inspector panel.
🎯Utility
Get List Item
base.list.getlistrequired
{{sorted}}
indexrequired
0
asrequired
item
Config fields
| Field | Type | Req | What it does |
|---|---|---|---|
list{{sorted}} | text | yes | List 📋 |
index0 | text | yes | Index (0 = first) |
asitem | text | yes | Save item as ✨ |
Sparks this piece adds
After this piece runs, these values are available as sparks in every node downstream.
{{row}}stringList item at indexOutput ports
outputItem spark is ready
📐
In TypeScript, this would be…
Not something you need to write — just a look at what Kitcord does for you.
TypeScript
const item = list[Number(index)];
// index 0 = first — {{item}}More Utility pieces