monday.com
communityWork operating system for project management, workflows, and team collaboration with customizable boards.
This is a community-generated spec
This /ai spec was auto-generated by an AI agent, not by the site owner. It may be incomplete or inaccurate.
POST
https://api.monday.com/v2Query boards and items via GraphQL
Parameters
queryGraphQL query for boards { id name items_page { items { id name column_values { id text } } } } (stringrequiredReturns
data.boards[] with id, name, items_page.items[] with column valuesPOST
https://api.monday.com/v2Create a new item on a board
Parameters
querymutation { create_item(board_id: Int!required— item_name: String!, column_values: JSON) { id name } } (stringReturns
data.create_item with id, namePOST
https://api.monday.com/v2Search items across boards
Parameters
queryGraphQL items_page_by_column_values query (stringrequiredReturns
data.items_page_by_column_values.items[] with id, name, board.name, column_values[]