Skip to main content

API Integration- How to get items+column values from specific board view?

  • May 19, 2023
  • 2 replies
  • 653 views

Hi guys,

How can I get items and specific column values from specific board view in 1 query?

Thank you,
May

2 replies

Matias.Monday
Forum|alt.badge.img
  • monday.com Team Member
  • May 21, 2023

Hello there @qishiwobujide and welcome to the community!

I hope you like it here 💪

You can use a query like this one:

{
  boards(ids: 123456789) {
    items (limit:50, page: 1) {
      id
      name
      column_values (ids:["status", "date4"]) {
        value
        text
        additional_info
      }
    }
  }
}

You can check out how pagination works here!

Take into account that in this example, I would be getting the data from the columns of ID “status” and “date4”.

Let us know if you have more questions!

Cheers,
Matias


  • New Participant
  • February 14, 2025

It may be due to age, but for me when I add “text” to column values for a status column I got 400 error.