Monday Ruby
A Ruby client library for the monday.com GraphQL API.
Installation
gem install monday_ruby
Quick Example
require "monday_ruby"
Monday.configure do |config|
config.token = ENV["MONDAY_TOKEN"]
end
client = Monday::Client.new
response = client.boards
boards = response.body.dig("data", "boards")
Documentation
Getting Started
New to monday_ruby? Start here to get up and running quickly.
Guides
Task-based guides for creating boards, managing items, handling pagination, and more.
API Reference
Complete documentation for all resources, methods, parameters, and return values.
Explanation
Understand how the library works under the hood.
Requirements
- Ruby 2.7 or higher
- A monday.com account with API access
- A monday.com API token
Resources
Edit this page
Last updated
Was this page helpful?
Thanks for your feedback!