monday_ruby
A Ruby client library for the monday.com GraphQL API.
Installation
bash
gem install monday_rubyOr add to your Gemfile:
ruby
gem 'monday_ruby'Quick Example
ruby
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
New to monday_ruby?
Learn by building your first monday.com integration. Takes about 15 minutes.
Looking for specific solutions?
Task-based guides for common scenarios: creating boards, managing items, handling pagination, and more.
Need API details?
Complete documentation for all resources, methods, parameters, and return values.
Requirements
- Ruby 2.7 or higher
- A monday.com account with API access
- A monday.com API token
Resources
Support
Need help? Check the how-to guides or open an issue on GitHub.