Skip to content
For LLMsView as Markdown·

Monday.com

Manage boards, items, and updates with the Monday.com API.

DetailValue
CategoryProductivity
Base URLhttps://api.monday.com/v2
AuthenticationBearer Token
Endpoints5
Connector keymonday

Using Monday.com in a workflow

  1. Go to Connections and click New Connection.
  2. Pick Monday.com from the marketplace.
  3. Enter your credentials (see Authentication above for what's expected).
  4. In a workflow, drop an API Call node and select this connection.
  5. Pick the operation you need from the Operation dropdown — the full list is below.

Available endpoints

EndpointSummary
POST /Query boards via GraphQL
POST /Query items via GraphQL
POST /Create an item via GraphQL mutation
POST /Update an item via GraphQL mutation
POST /Create an update on an item

Each endpoint is documented in full below. Use the outline on the right to jump to one.

POST /

Query boards via GraphQL

DetailValue
Operation IDdata.queryBoards
MethodPOST
Path/

Parameters

No parameters.

Request Body

FieldType
querystring
variablesobject

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Monday.com connection from the Connection dropdown.
  3. In the Operation dropdown, select data.queryBoards.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Monday.com API reference.

POST /

Query items via GraphQL

DetailValue
Operation IDdata.queryItems
MethodPOST
Path/

Parameters

No parameters.

Request Body

FieldType
querystring
variablesobject

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Monday.com connection from the Connection dropdown.
  3. In the Operation dropdown, select data.queryItems.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Monday.com API reference.

POST /

Create an item via GraphQL mutation

DetailValue
Operation IDdata.createItem
MethodPOST
Path/

Parameters

No parameters.

Request Body

FieldType
querystring
variablesobject

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Monday.com connection from the Connection dropdown.
  3. In the Operation dropdown, select data.createItem.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Monday.com API reference.

POST /

Update an item via GraphQL mutation

DetailValue
Operation IDdata.updateItem
MethodPOST
Path/

Parameters

No parameters.

Request Body

FieldType
querystring
variablesobject

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Monday.com connection from the Connection dropdown.
  3. In the Operation dropdown, select data.updateItem.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Monday.com API reference.

POST /

Create an update on an item

DetailValue
Operation IDdata.createUpdate
MethodPOST
Path/

Parameters

No parameters.

Request Body

FieldType
querystring
variablesobject

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Monday.com connection from the Connection dropdown.
  3. In the Operation dropdown, select data.createUpdate.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Monday.com API reference.