Get item description (widget?) via the API

Hey there, Omer from the developer community here

Just updating that fetching an item description is available via API using blocks:

query {
  boards(ids: [XYZ]) {
    items_page(query_params: {ids: [XYZ]}) {
      items {
        description {
          blocks {
            id
            content
          }
        }
      }
    }
  }
}

We’re also planning to open this via MCP in the near future if it helps.