Took me a while to find this, so here it is for posterity. In case you want to find an arbitrary Shopify resource using the ShopifyAPI gem, here’s the general syntax: ShopifyAPI::Order.find(:all, params: { field: term }) As an example, finding a Shopify order by number (as opposed to by ID): ShopifyAPI::Order.find(:all, params: { name: …