Projects
A Project is both your automation code and your runtime environment. As code, a Project contains your browser automation APIs and shared logic—written in Python or TypeScript using Playwright.Building your automations
You can develop Projects in two ways:- Online IDE: Zero setup. Write, test, and deploy directly from your browser.
- CLI: Local development with full version control, CI/CD integration, and team collaboration.
Deployment
When you deploy a Project, all its APIs become available as callable endpoints. Intuned handles the infrastructure: browser provisioning, execution queues, retries, and scaling.Execution model
Runs and Attempts
When you call an API, you create a Run—a single logical execution of your automation. Each Run may include one or more Attempts. If an Attempt fails (network issues, transient errors), Intuned can automatically retry up to your configured limit. Every Attempt is tracked with its own logs and browser trace, plus timing data.Two ways to execute
Runs — On-demand execution via API. You trigger a Run, we handle queuing and concurrency. Jobs — Scheduled or batch execution. Define what to run, when to run it, and where to send results. Built for scrapers and crawlers that need to run on a recurring basis. Each execution of a Job is a JobRun—the Job is the template, and each JobRun is a single execution of that template.Authentication
For automations that require login, Intuned provides built-in authentication support. You define two functions—create (how to log in) and check (how to verify a session is valid)—and Intuned handles the rest: validating sessions before Runs, reusing them when possible, and recreating them when expired.
Key features
Flexible automations — Deploy any code. Deterministic, AI-driven, or hybrid—use any library or package. Unopinionated by design. Built-in authentication — Writecreate and check functions, and Intuned handles the rest—validating, reusing, and recreating sessions automatically.
Online IDE — Zero setup. Write, test, and deploy directly from your browser.
Stealth and anti-detection — Run automations without getting blocked. Stealth mode, automatic captcha solving, and proxy support are built in.
Observability — Full logs, traces, and session recordings for every Run. See what happened and why.
What’s next?
- Build a scraper with Intuned Agent — Generate a scraper from a prompt and schema
- Build an RPA with Intuned Agent — Automate browser workflows using the agent
- Scraper quickstart — Build a scraper by hand, deploy it, configure a Job, and run it end to end. Covers the platform concepts from this page in practice.
- RPA quickstart — Build an RPA automation by hand, deploy it, and trigger it via API. A hands-on walkthrough of the platform workflow.
- Intuned in depth — Explore the platform in depth