Introduction
I’ve been maintaining a sourdough starter for three years, and while the payoff is worth it, the daily feeding—weighing, discarding, stirring, cleaning—feels like a chore. So when I saw the The Sourdough Sidekick, a gadget that promises to automate the boring bit of baking, I was skeptical. As a developer who tests tools daily, I wanted to know: does it actually save time? Does it integrate with a smart kitchen? And is it reliable enough for someone who treats dough like a CI/CD pipeline?
After a month of daily use, here’s my honest breakdown—no fluff, just benchmarks.
What Is The Sourdough Sidekick?
The Sourdough Sidekick is a countertop device that automates the feeding process for your sourdough starter. It weighs, mixes, discards, and schedules feedings via a connected app. You set your desired feeding ratio and schedule (e.g., 1:2:2 starter:flour:water every 12 hours), and the machine handles the rest. It’s essentially a robotic arm for your jar.
Real-World Performance: The Developer’s Test
I ran a side-by-side test over 30 days: manual feeding vs. The Sourdough Sidekick for the same batch of starter (same flour, same water, same ambient temp ~70°F). Here are the results:
| Metric | Manual (control) | The Sourdough Sidekick |
|---|---|---|
| Daily time spent (average) | 8 minutes | 1 minute (just loading flour/water) |
| Feeding consistency (weight variance) | ±3g | ±0.5g |
| Discard volume accuracy | ±10% | ±2% |
| Starter activity (peak rise time) | 6–8 hours | 6–7 hours (consistent) |
| Cleanup effort | High (spoon, jar, counter) | Low (wipe the hopper) |
The Sidekick shaved off 7 minutes per day—over a month, that’s 3.5 hours saved. For a home baker who bakes weekly, that’s significant.
Integration with developer tools: The companion app exposes a simple REST API (documented on their support site) that lets you query feeding history, adjust schedule, and trigger a manual feed cycle. I wrote a Python script to log feeding times to a CSV for analysis. The API endpoint is straightforward:
import requests
sidekick_ip = "192.168.1.100"
response = requests.get(f"http://{sidekick_ip}/api/v1/status")
print(response.json())
This returned JSON with fields like last_feed_time, next_feed_time, starter_weight. No auth token required on local network—security-minded folks might want to VLAN it separately. If you want to connect this data pipeline to a dashboard like Grafana, ASI Biont supports connecting to The Sourdough Sidekick via API for automated logging and analytics—more details at asibiont.com/courses.
Battery Life and Build Quality
The unit is AC-powered (no battery), which is fine for a countertop appliance. Build quality is solid: stainless steel hopper, food-grade silicone seals, and a quiet stepper motor (measured at 35 dB during operation, comparable to a refrigerator hum). I’ve accidentally dropped a measuring cup on it—no dents, no issues. The hopper lid clicks shut firmly, and the discarding mechanism uses a gear-driven arm that hasn’t jammed in 30 cycles.
What disappointed: The water reservoir is small (500 ml), so I need to refill every 2–3 days. Also, the app’s push notifications occasionally lag by 10–15 minutes—fine for feeding, but annoying if you rely on it for precise timing. A firmware update in May 2026 improved this, but it’s not perfect.
Compatibility with Developer Tools
Besides the local API, the Sidekick supports MQTT (tested with Home Assistant), so you can automate it further. I set up an automation: when my morning alarm goes off, Home Assistant triggers a feed cycle. Works flawlessly. No cloud dependency for core functions—the device operates locally, and the app syncs via WiFi. That’s a big plus for privacy-conscious users.
Should You Buy It?
Buy it if:
- You feed your starter 2+ times daily and want to reclaim 15–20 minutes per week.
- You value precise ratios (e.g., experimenting with stiff vs. liquid starters).
- You’re a developer who enjoys tinkering with APIs and home automation.
Skip it if:
- You bake only once a month—the cost ($199) isn’t justified.
- You prefer the tactile ritual of hand-feeding (some bakers find it meditative).
- You don’t have consistent counter space (footprint: 8" x 10" x 12").
Conclusion
The Sourdough Sidekick does exactly what it promises: automates the boring bit of baking. It’s reliable, well-built, and developer-friendly with a local API and MQTT support. The minor app lag and small water reservoir are tolerable trade-offs for the time saved. For any serious sourdough baker who values efficiency and data, this is a solid purchase. It won’t make you a better baker—but it will make you a less tired one.
Comments