Skip to main content
Mino AI lets you automate any website using plain English. No selectors, no brittle scripts - just describe what you want, and our AI handles the rest.

Why Mino AI?

Natural Language Control

Describe tasks in plain English, no CSS selectors or XPath needed

Real-Time Streaming

Watch your automation execute live with Server-Sent Events

Anti-Detection Browsers

Stealth mode for sites with bot protection

Proxy Support

Route requests through specific geographic locations

🚧 Public Beta Limits

Although Mino can scale to millions of operations, this beta release includes safety rails such as a maximum 10-task concurrency limit. Login capabilities are available by application only, and 2FA or other human-in-the-loop capabilities are not supported.

Quick Example

curl -N -X POST https://mino.ai/v1/automation/run-sse \
  -H "X-API-Key: $MINO_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "url": "https://example.com",
    "goal": "Extract all product names, prices, and availability"
  }'
Response:
{
  "type": "COMPLETE",
  "status": "COMPLETED",
  "resultJson": {
    "products": [
      { "name": "Laptop Pro", "price": "$1,299", "inStock": true },
      { "name": "Wireless Mouse", "price": "$29", "inStock": true }
    ]
  }
}

API Endpoints

EndpointAuthUse Case
POST /v1/automation/run-sseX-API-Key headerDirect API integration
POST /mcpOAuth 2.1AI assistant integrations (Claude, etc.)

Browser Profiles

ProfileBest ForUse When
liteStandard websitesFast execution on regular sites
stealthAnti-bot protectionSite blocks automation or uses Cloudflare

Get Started

Key Features

Support