Skip to main content
Your agents can now work the web. TinyFish Web Agent enables enterprises, builders, and developers to deploy AI agents that navigate real sites, complete real workflows across authenticated systems and dynamic interfaces, and return structured operational intelligence - through our visual platform or API. At scale. Reliably.

Why TinyFish Web Agent?

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

Quick Example

from tinyfish import TinyFish

client = TinyFish()

with client.agent.stream(
    url="https://scrapeme.live/shop",
    goal="Extract the first 2 product names and prices. Respond in json",
) as stream:
    for event in stream:
        print(event)
Response:
{
  "type": "COMPLETE",
  "status": "COMPLETED",
  "result": {
    "products": [
      { "name": "Laptop Pro", "price": "$1,299", "inStock": true },
      { "name": "Wireless Mouse", "price": "$29", "inStock": true }
    ]
  }
}

Get Started

Key Features

Support