Application Actions
Launch desktop apps, tools, games, or files configured by the user.
Actions are the primary way WebTrigger controls your PC. A WebShell displays an action, the user presses it, and WebTrigger runs the configured behavior on the Windows computer.
Launch desktop apps, tools, games, or files configured by the user.
Open a URL in the default browser or build a web launcher for common destinations.
Use built-in media, desktop, window, volume, and power controls exposed by WebTrigger.
Run configured commands or scripts for power-user workflows and local automation.
Send HTTP requests to local tools, smart home devices, webhooks, or services.
Run Python-backed actions for custom logic when a simple command is not enough.
/api/actionsList user-created actions configured in the Windows app.
/api/actions/execute/{id}Execute a configured action by ID.
const actions = await fetch('/api/actions').then(res => res.json());
await fetch(`/api/actions/execute/${encodeURIComponent(actions[0].id)}`, {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ confirmed: false })
});