External DocumentationTo learn more, visit the Monday documentation.
Actions
List Items
Returns a collection of items in a specific board.

Preview this Workflow on desktop
Was this page helpful?
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
| Parameter | Description |
|---|---|
| Board ID | The board’s unique identifier. |
| Cursor | Specifies the pagination cursor for the next page of items. |
| Limit | The number of items to return. |
{
"data": {
"boards": [
{
"items_page": {
"cursor": "<string>",
"items": [
{
"id": "1231333789",
"name": "My First Item",
"state": "active",
"updated_at": "2022-01-01T01:01:01Z"
},
{
"id": "7891333123",
"name": "My Second Item",
"state": "active",
"updated_at": "2022-02-02T02:02:02Z"
}
]
}
}
]
}
}
Was this page helpful?