Developers
A device command plane your tools can talk to.
List devices, enqueue commands, create enrollment links, open tunnels, and embed shells.
API
Integrate device operations into your own tools
POST /api/v1/devices/dev_123/commands
authorization: Bearer cp_org_...
content-type: application/json
{"script":"uptime && df -h /","timeout_seconds":60}
201 Created
{"id":"cmd_9c1","status":"queued"}
Device API
List, look up, approve, update, and inspect devices from your own systems.
Command enqueue
Queue operational scripts and collect execution results through the API.
Enrollment links
Generate install links from factory, CI, customer provisioning, or support workflows.
Shell embeds
Put browser shell access inside the support or admin tool your team already uses.
API shape
The useful surfaces are HTTPS.
/api/v1/devices
List devices for an organization.
/api/v1/devices/lookup
Find a device by identity or metadata.
/api/v1/devices/:id/commands
Queue a shell command.
/api/v1/enrollment_links
Create an install link.
/api/v1/devices/:id/embeds/shell
Create an embeddable shell session.
/api/v1/devices/:id/tunnels
Create a temporary tunnel.
Build on it