require 'appwrite' include Appwrite client = Client.new .set_endpoint('https://.cloud.appwrite.io/v1') # Your API Endpoint .set_project('') # Your project ID .set_key('') # Your secret API key tables_db = TablesDB.new(client) result = tables_db.get_column( database_id: '', table_id: '', key: '' )