Overview
Standalone Runs let you execute browser automations on demand. It’s the simplest way to run your browser automations. Use Standalone Runs when you need to trigger a browser automation:- In response to user actions — Submit a form when a user clicks “Apply Now”, fetch account details on request, or pull data when a customer connects their account
- As part of a workflow — Scrape data for a single item, validate a URL, or extract information from a page as one step in a larger process
How it works
Project configuration
Standalone Runs require API access to be enabled in your project settings. You also need to set a maximum concurrent requests limit to control how many Runs can execute at the same time.- Online IDE
- CLI
Select Files > Intuned.json. Update the settings as needed.

Your workspace has a limit on total deployed machines across all projects. Contact support if you need to increase this limit.
Triggering a Standalone Run
Before triggering a Standalone Run, make sure your project is deployed.
- API
- Dashboard (Playground)
Call the Run start endpoint with the API name and parameters. The response includes a Run ID that you can use to monitor progress and get results. Then use the Run result endpoint with the Run ID to check status and get the result when complete.
Get results without polling
Intuned supports webhook and S3 sinks to deliver Run results automatically when complete.- API
- Dashboard (Playground)
AuthSession Support
For authenticated Projects, each Run must specify an AuthSession to use. Before each Attempt runs, Intuned automatically validates the AuthSession and can recreate it if needed. This ensures your automation code never runs with an invalid session.- API
- Dashboard (Playground)
Specify the AuthSession to use in the run configuration:
Execution model
When you start a Standalone Run, it executes a single API with the parameters you specify. Browser automations can sometimes fail due to temporary issues (network problems, element not found, timeouts). To handle this, Runs support automatic retries through multiple Attempts. The Run will try one or more Attempts until it succeeds or runs out of retries. Each Run produces a result or error based on the final Attempt’s outcome. Each Attempt has its own result or error, along with detailed logs and a browser trace for debugging. The Run starts in aPending state, transitions to Started when an Attempt begins, and finally to Success, Failed, or Canceled based on the outcome.
For more details about Runs and Attempts, see Intuned in depth: Runs and Attempts.
Monitoring
Intuned tracks every Run and its Attempts, giving you full visibility into your automation executions. From the dashboard, you can view Run records, inspect individual Attempts, and access detailed logs and browser traces for debugging. For more details, see Monitoring and traces.Best practices
- Choose an appropriate maximum concurrent requests value based on your expected load. While you’re not charged for idle compute time, setting a reasonable limit helps manage resource usage effectively.
- Set request timeouts to reasonable values to ensure that failed Attempts are detected quickly, allowing for faster retries and reducing overall execution time.
- Use sinks (webhook or S3) to receive Run results automatically, reducing the need for polling and improving efficiency.
- If your use case involves batch or scheduled executions, consider transitioning to Jobs for better management and scalability.
- Set appropriate retry attempts. Increase retries for websites with flaky behavior or network issues to improve success rates.
Limitations
- Workspace machine limit: Your workspace has a limit on total deployed machines across all projects. If you need more capacity, contact support to increase this limit.
- Sink delivery is at-least-once: Results sent to sinks may be delivered multiple times in rare failure scenarios. Make sure your webhook or processing logic handles duplicate deliveries idempotently.
FAQs
What's the difference between Standalone Runs and Jobs?
What's the difference between Standalone Runs and Jobs?
Standalone Runs execute a single API immediately when you call the endpoint. Jobs orchestrate multiple API executions together with scheduling, retries, and concurrency management. Use Standalone Runs for one-off or user-triggered executions; use Jobs for batch processing and recurring automations.
How do retries work?
How do retries work?
Each Run can have multiple Attempts. If an Attempt fails, Intuned automatically retries up to your configured
maximumAttempts (default is 3). Each Attempt has its own logs and browser trace for debugging. The Run succeeds if any Attempt succeeds, and fails only after all Attempts are exhausted.Can I cancel a Run in progress?
Can I cancel a Run in progress?
Yes. Use the Run cancel endpoint with the Run ID to cancel a pending or running Run. The Run status changes to
Canceled.How long can a Run take?
How long can a Run take?
Each Attempt has a configurable
requestTimeout (default 600 seconds / 10 minutes). If an Attempt exceeds this timeout, it fails and triggers a retry if attempts remain. For long-running automations, increase the timeout or use extendTimeout within Jobs.

