require "rest-client" require 'json' module ZcBroker module ApiCall def self.get(url) response = RestClient.get(url) return JSON.parse(response) end end end