Swarm — Find Me
Triggers a visual & LED indication on the target miner so you can locate it physically. This is the API behind the Find button in the Swarm menu.
POST /api/swarm/find
Request
No body.
Response
{ "status": "ok" }
The target miner will:
- Flash its screen for a few seconds.
- Blink its LED (if enabled).
Example — bash
curl -X POST http://192.168.1.43/api/swarm/find
Example — Python
import requests
for ip in ["192.168.1.43", "192.168.1.44", "192.168.1.45"]:
requests.post(f"http://{ip}/api/swarm/find")
print(f"pinged {ip}")
tip
Combine with GET /alive to get every IP, then loop through them — perfect for a "find all my miners" button on your home dashboard.