monday.com is a colorful, highly visual work-management platform built by monday.com Ltd. It ranks around #20 among collaboration tools with roughly 2.6% usage share, popular across marketing, sales, HR, and engineering teams alike. Teams reach for it because its customizable boards and no-code automations let both technical and non-technical staff build their own workflows without writing code.
monday.com exposes a GraphQL API (monday API v2). This mutation creates a new item on a board and sets a status column value โ the same call powering most third-party monday integrations.
# POST https://api.monday.com/v2
# Header: Authorization: <your monday API token>
mutation {
create_item (
board_id: 1234567890,
item_name: "Launch email campaign",
column_values: "{\"status\": {\"label\": \"Working on it\"}, \"date4\": {\"date\": \"2026-08-01\"}}"
) {
id
name
}
}
Sign up free at monday.com, pick a template board (marketing, CRM, dev sprints, etc.), and invite your team. For automation or custom integrations, grab a personal API token from your Avatar โ Admin โ API and call the GraphQL endpoint.
# quick curl test of the monday.com API
curl -s https://api.monday.com/v2 \
-H "Authorization: $MONDAY_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{"query":"query { me { name email } }"}'