Monday.com
Read boards, items, and workspaces directly via api.monday.com (GraphQL).
Setup (one-time)
- 1. In Monday.com, click your profile picture (top right)
- Select Developers — this opens the Developer Center
- Click API token → Show
- Copy your personal token
- Set the environment variable:
CODEBLOCK0
Commands
Get your account info
CODEBLOCK1
List all boards
CODEBLOCK2
Get board details (columns, groups)
CODEBLOCK3
List items on a board
CODEBLOCK4
List workspaces
CODEBLOCK5
List users
CODEBLOCK6
Notes
- - Free plan: 2 seats, unlimited boards. API access works on free.
- Board IDs are numeric — find them in the board URL or via
list-boards. - Monday uses GraphQL only (single endpoint). No REST API.
- API version pinned to
2024-04.
Monday.com
通过api.monday.com(GraphQL)直接读取看板、条目和工作区。
一次性设置
- 1. 在Monday.com中,点击右上角的个人头像
- 选择开发者——这将打开开发者中心
- 点击API令牌 → 显示
- 复制您的个人令牌
- 设置环境变量:
MONDAYAPITOKEN=您的令牌
命令
获取账户信息
bash
python3 /mnt/skills/user/monday/scripts/monday.py me
列出所有看板
bash
python3 /mnt/skills/user/monday/scripts/monday.py list-boards
python3 /mnt/skills/user/monday/scripts/monday.py list-boards --limit 50
获取看板详情(列、分组)
bash
python3 /mnt/skills/user/monday/scripts/monday.py get-board <看板ID>
列出看板上的条目
bash
python3 /mnt/skills/user/monday/scripts/monday.py list-items <看板ID>
python3 /mnt/skills/user/monday/scripts/monday.py list-items <看板ID> --limit 50
列出工作区
bash
python3 /mnt/skills/user/monday/scripts/monday.py list-workspaces
列出用户
bash
python3 /mnt/skills/user/monday/scripts/monday.py list-users
注意事项
- - 免费计划:2个席位,无限看板。免费版也可使用API访问。
- 看板ID为数字——可在看板URL或通过list-boards命令找到。
- Monday仅使用GraphQL(单一端点)。无REST API。
- API版本固定为2024-04。