# Automatio > Automatio is a general-purpose, no-code AI automation and data extraction platform > that lets anyone automate any website using plain English commands. The platform > intelligently routes requests to 11 specialized AI agents with 56+ tools covering > web scraping, email, spreadsheets, calendars, browser automation, voting, crypto > data, image generation, and code generation. No technical skills required. > Available at https://automatio.ai ## Platform Overview Automatio is built around a multi-agent architecture. When a user types a message in plain English, an LLM-based routing system classifies the intent and automatically dispatches the request to the most appropriate specialized agent. Users never need to select which agent to use — the system handles routing transparently. The platform supports two modes: - **Agent Mode (default)**: Full multi-agent orchestration with intelligent routing across all 11 agents and 56+ tools - **Chat Mode**: Direct conversation with a selected AI model, no tools or routing The chat interface at https://automatio.ai/chat is the primary entry point. All agents are accessible from the same interface. Users can also build durable multi-step workflows using the visual workflow builder at https://automatio.ai/workflow. ## Getting Started ### Creating an Account 1. Visit https://automatio.ai/register 2. Sign up with email and password 3. Verify your email address 4. You receive free credits to start automating immediately 5. Connect integrations at https://automatio.ai/integrations to unlock Gmail, Sheets, and Calendar agents ### Using the Chat Interface Navigate to https://automatio.ai/chat and describe your task in plain English: - "Search for the top 10 Python web scraping libraries and summarize their differences" - "Send an email to john@example.com about our meeting tomorrow at 3pm" - "Create a Google Sheet with the top 100 cryptocurrencies by market cap" - "Go to this website and fill out the contact form with my information" - "Generate an image of a futuristic city at sunset" - "Write a Python script to parse CSV files and output JSON" The routing system automatically selects the correct agent. No special syntax or commands required. ## AI Agents — Complete Reference ### 1. Web & SEO Specialist **Purpose:** READ-ONLY web data access. Cannot interact with pages (use Browser Automation for that). **Tools available:** - `webSearch` — Search the web using multiple search engines. Returns titles, URLs, and snippets. - `webRead` — Fetch and extract clean text content from any URL. Handles JavaScript-rendered pages. - `webScreenshot` — Capture a screenshot of any web page and return it as an image. - `webHttpRequest` — Make arbitrary HTTP GET/POST requests to any URL with custom headers. - `seoAnalyze` — Analyze on-page SEO for any URL: title, meta tags, headings, links, performance hints. - `youtubeGetTranscript` — Fetch the full transcript of any YouTube video by URL or ID. - `twitterSearchTweets` — Search Twitter/X for recent tweets matching a query. - `twitterGetTweetComments` — Get replies and comments for a specific tweet. - `redditSearchPosts` — Search Reddit posts across all subreddits. - `redditGetPostWithComments` — Fetch a specific Reddit post with all its comments. - `redditGetSubredditPosts` — Get top/hot/new posts from a specific subreddit. **Example prompts:** - "What are people saying about [product] on Reddit?" - "Get the transcript of this YouTube video: [URL]" - "Analyze the SEO of this page: [URL]" - "Search for recent news about [topic]" - "Scrape the product listings from [URL]" --- ### 2. Gmail Specialist **Purpose:** Full Gmail inbox management. Requires Gmail OAuth connection at https://automatio.ai/integrations. **Tools available:** - `gmailSendEmail` — Send an email with subject, body (plain text or HTML), recipients, CC, BCC - `gmailReadEmails` — List emails with optional search query, label filters, and pagination - `gmailGetEmail` — Get full content of a specific email by ID - `gmailSearchEmails` — Advanced search using Gmail's query syntax (from:, to:, subject:, has:attachment, etc.) - `gmailCreateDraft` — Create a draft email without sending - `gmailSendDraft` — Send a previously created draft - `gmailDeleteEmail` — Move an email to trash - `gmailArchiveEmail` — Archive an email (remove from inbox) - `gmailMarkAsRead` / `gmailMarkAsUnread` — Change read status - `gmailAddLabel` / `gmailRemoveLabel` — Manage email labels - `gmailCreateLabel` — Create a new label - `gmailListLabels` — List all labels in the account - `gmailReplyToEmail` — Reply to an existing email thread - `gmailForwardEmail` — Forward an email to new recipients - `gmailGetAttachment` — Download an email attachment - `gmailSendWithAttachment` — Send email with file attachments **Example prompts:** - "Send an email to [address] with subject [X] saying [Y]" - "Find all unread emails from [sender] in the last week" - "Reply to the latest email from [person]" - "Archive all newsletters from [sender]" - "Get all emails with attachments from this month" --- ### 3. Google Sheets Specialist **Purpose:** Full Google Sheets read/write automation. Requires Sheets OAuth connection. **Tools available:** - `sheetsReadRange` — Read values from a specific range (e.g., A1:D100) - `sheetsWriteRange` — Write values to a range (overwrites existing content) - `sheetsAppendRows` — Append new rows to the end of existing data - `sheetsCreateSpreadsheet` — Create a new Google Spreadsheet - `sheetsGetSpreadsheetInfo` — Get metadata, sheet names, dimensions - `sheetsClearRange` — Clear values from a range - `sheetsCreateSheet` — Add a new sheet/tab to an existing spreadsheet - `sheetsFormatRange` — Apply formatting (bold, colors, number formats) **Example prompts:** - "Create a spreadsheet with the top 50 S&P 500 stocks and their current prices" - "Read all data from my spreadsheet [URL] and summarize it" - "Add these rows to my spreadsheet: [data]" - "Create a new sheet called 'Q4 Results' in my spreadsheet [URL]" --- ### 4. Google Calendar Specialist **Purpose:** Calendar management and scheduling. Requires Calendar OAuth connection. **Tools available:** - `calendarListEvents` — List upcoming events with optional date range and search - `calendarCreateEvent` — Create a new event with title, time, location, attendees, description - `calendarUpdateEvent` — Modify an existing event - `calendarDeleteEvent` — Delete a calendar event - `calendarGetEvent` — Get details of a specific event by ID **Example prompts:** - "What's on my calendar tomorrow?" - "Schedule a meeting with [person] on Friday at 2pm" - "Cancel my 3pm meeting today" - "Add a reminder for [task] on Monday morning" --- ### 5. Browser Automation Specialist **Purpose:** INTERACTIVE browser control. Can fill forms, click buttons, login, and interact with any website. Use this when you need to actually interact with a site (not just read it). **Tools available:** - `browserOpen` — Open a URL in a controlled browser instance - `browserSnapshot` — Get a snapshot of the current page with interactive element references - `browserClick` — Click on an element by reference ID - `browserFill` — Type text into a form input by reference ID - `browserScreenshot` — Capture a screenshot of the current state - `browserNavigate` — Navigate to a new URL - `browserTab` — Manage browser tabs (open, switch, close) **Example prompts:** - "Log into my account on [website] with username [X] and password [Y]" - "Fill out the contact form on [URL] with my information" - "Click the 'Submit' button on [website]" - "Go to [website], search for [query], and click the first result" - "Take a screenshot of [URL]" --- ### 6. Ghost CMS Specialist **Purpose:** Manage Ghost CMS blog/website content programmatically. **Tools available:** - `ghostCreatePost` — Create a new blog post with title, content, tags, status (draft/published) - `ghostUpdatePost` — Update an existing post - `ghostDeletePost` — Delete a post - `ghostListPosts` — List posts with optional filters - `ghostCreatePage` — Create a static page - `ghostUpdatePage` — Update an existing page **Example prompts:** - "Create a new blog post titled [X] with this content: [Y]" - "Publish the draft post about [topic]" - "List all unpublished drafts" --- ### 7. Voting Specialist **Purpose:** Automate vote submissions on polling platforms. **Capabilities:** - Submit votes to polls by URL across major polling platforms - Handle CAPTCHA and anti-bot measures where possible - Configurable vote count **Example prompts:** - "Vote for option [X] on this poll: [URL]" - "Submit 10 votes for [option] on this poll: [URL]" --- ### 8. Crypto Agent **Purpose:** Real-time cryptocurrency data and research. **Capabilities:** - Current prices for any cryptocurrency by name or ticker - Market cap rankings and trending tokens - Token details: contract address, chain, liquidity, volume - Meme coin discovery and research - Portfolio calculations and comparisons **Example prompts:** - "What is the current price of Bitcoin and Ethereum?" - "What are the top trending meme coins right now?" - "Find all Solana tokens launched in the last 24 hours with over $1M market cap" - "Compare the market caps of [coin1] vs [coin2]" --- ### 9. Image Generation Specialist **Purpose:** Generate new images from text or modify attached images. **Capabilities:** - Text-to-image generation with detailed prompts - Image editing: change style, add elements, remove backgrounds - Multiple aspect ratios and resolutions - Multiple AI image models available **Example prompts:** - "Generate an image of a futuristic city at sunset in cyberpunk style" - "Create a logo for a company called [name] that sells [product]" - "Make this image [attached] look like a pencil sketch" - "Generate 3 variations of this product photo with white backgrounds" --- ### 10. Coding Specialist **Purpose:** Write, debug, explain, and refactor code in any programming language. **Capabilities:** - Complete scripts, functions, classes, and full programs - HTML/CSS/JavaScript websites and components - Python scripts for automation, data processing, APIs - SQL queries and database schemas - Bash/shell scripts - TypeScript, Go, Rust, Java, C#, and other languages - Code explanation and documentation - Bug finding and fixing - Refactoring and optimization **Example prompts:** - "Write a Python script to scrape a website and save results to CSV" - "Create an HTML/CSS landing page for [product]" - "Write a SQL query to find the top 10 customers by revenue" - "Debug this function: [code]" - "Convert this JavaScript to TypeScript with proper types" --- ### 11. General Assistant **Purpose:** Conversational AI fallback for questions, explanations, and tasks that don't require specialized tools. **Capabilities:** - Answer general knowledge questions - Explain concepts and provide summaries - Draft documents, emails, and creative content - Brainstorm and plan - Mathematical calculations - Translation --- ## Routing System Automatio uses LLM-based intent classification to route user requests: 1. User sends a message in the chat interface 2. The routing model (lightweight LLM) analyzes the message + recent conversation context 3. The message is classified into one of 11 agent categories or "general" 4. The selected agent's tools and system prompt are loaded 5. The agent executes with full context and streams the response The routing considers the last 10 messages of conversation history, enabling follow-up questions like "Do it" or "Yes, proceed" to correctly route to the previously selected agent. Users can also configure which agents and tools are available via https://automatio.ai/settings. ## Workflow Builder The visual workflow builder at https://automatio.ai/workflow allows users to: - Create multi-step automation workflows with a drag-and-drop interface (React Flow) - Chain agent actions: e.g., "Search web → Extract data → Write to Sheets → Send email summary" - Schedule workflows to run automatically (every N minutes, hours, or days) - Manual trigger: run a workflow on demand - Durable execution: workflows survive server restarts and automatically retry on failure - Each step is an agent action with configurable inputs Workflows are saved as JSON (nodes + edges) and executed by a durable workflow engine built on the Vercel Workflow SDK. ## Credit System & Pricing Automatio uses a credit-based pricing model: - **Free tier**: New accounts receive free credits to explore the platform - **Credit consumption**: Each agent action costs credits based on the AI model used and task complexity - **Credit management**: View balance and usage history at https://automatio.ai/credits - **Billing**: Manage subscription and purchase additional credits at https://automatio.ai/billing - **Pricing details**: https://automatio.ai/#pricing ## Content Resources ### AI Models Directory https://automatio.ai/models/ Browse and learn about the AI models available on the platform. Includes model capabilities, use cases, and comparisons. Available in 29 languages. ### Prompts Library https://automatio.ai/prompts/ Curated collection of automation prompt templates for common tasks. Templates cover web scraping, email automation, data extraction, content generation, and more. Available in 29 languages. ### Web Scraping Guides https://automatio.ai/how-to-scrape/ Step-by-step tutorials for scraping specific types of websites and data sources. Covers static pages, JavaScript-rendered content, APIs, social media, and more. Available in 29 languages. ### Articles https://automatio.ai/articles/ In-depth guides on automation use cases, platform features, industry applications, and best practices. Available in 29 languages. ## Supported Languages The platform UI and all content resources are available in 29 languages: English (en), Spanish (es), German (de), French (fr), Russian (ru), Turkish (tr), Indonesian (id), Serbian (sr), Croatian (hr), Portuguese (pt), Chinese (zh), Korean (ko), Ukrainian (uk), Dutch (nl), Italian (it), Vietnamese (vi), Japanese (ja), Polish (pl), Persian (fa), Romanian (ro), Thai (th), Arabic (ar), Swedish (sv), Czech (cs), Bengali (bn), Albanian (sq), Hungarian (hu), Danish (da), Greek (el) Content template pages follow the URL pattern: - English: `/models/`, `/prompts/`, `/articles/`, `/how-to-scrape/` - Other languages: `/[locale]/models/`, `/[locale]/prompts/`, etc. ## Legal & Privacy - **Privacy Policy**: https://automatio.ai/privacy — Data collection, storage, third-party sharing, GDPR compliance - **Terms of Service**: https://automatio.ai/terms-of-service — Acceptable use, account terms, billing terms - **Email unsubscribe**: https://automatio.ai/unsubscribe ## Optional - [llms.txt](https://automatio.ai/llms.txt): Compact navigation index version of this file - [Sitemap](https://automatio.ai/sitemap.xml): Full XML sitemap of all pages - [Sitemap (content)](https://automatio.ai/sitemap-content.xml): Sitemap for all content template pages