14 comments

  • jedberg5 days ago
    Very interesting. I worry that if I use your cloud, and a lot of other people do, all of your IP addresses will get banned by all the big players. It will definitely be a fun cat and mouse game!<p>Related story: Way back in the day, PayPal was just getting started, and decided eBay transactions would be their perfect customer. The only problem is that eBay didn&#x27;t allow scraping. So they built an entire proxy infrastructure to go around eBay&#x27;s rules and scrape them.<p>It worked. It worked so well, eBay bought PayPal.<p>The side effect of this is that I got control of the PayPal proxy infrastructure since I was on the security team for both eBay and PayPal after the acquisition.<p>We used that proxy farm to scrape the rest of the web looking for fake eBay sites (because they would block traffic from eBay&#x27;s IPs) and we had the guys who built it help us build proxy defense for eBay and PayPal.<p>So this could work in your favor, if you manage to constantly scrape a large target who might want to buy you. :)
    • huss975 days ago
      That honestly sounds so fun! Who better to build your defences than your attackers ahaha<p>Tying into your concern, keeping IPs fresh and high quality will definitely be a balancing act as we get bigger. It&#x27;d be one today too if we were to try to offer super granular location controls because there&#x27;s only so many proxies in X state, let alone X city. Currently, we get to aggregate &amp; QA from multiple proxy providers, so our total pool is 300M+ IPs in the US and so far we&#x27;ve had a 99.95% rate of getting a fresh IP address in a session. So so far so good :)<p>As for that last point, I guess we&#x27;ll see what the future has in store for us :P
      • handfuloflight5 hours ago
        Is it possible to persist an IP address if we supply the proxy credentials?
      • asah3 hours ago
        +1 to residential proxy providers like joinmassive.com ! #proudinvestor
      • ProofHouse6 hours ago
        you might have a captcha issue on your discord haha or something, I cannot join
  • capiki9 hours ago
    Can you say more about your product plans? It looks like this is directly competing with Browserbase — how will you differentiate? Looking forward to seeing how the product and company grows
  • orliesaurus12 hours ago
    Is this very different from <a href="https:&#x2F;&#x2F;github.com&#x2F;browserbase&#x2F;stagehand">https:&#x2F;&#x2F;github.com&#x2F;browserbase&#x2F;stagehand</a>
  • huss976 days ago
    Hello Hacker News! We’re Nas and Huss, co-founders of steel.dev (<a href="http:&#x2F;&#x2F;steel.dev" rel="nofollow">http:&#x2F;&#x2F;steel.dev</a>). Steel is an open-source browser API for AI agents and apps. We make it easy for AI devs to build browser automation into their products without getting flagged as a bot or worrying about browser infra.<p>over the last year or so, we’ve built quite a few AI apps that interact with the web and noticed - a. it was magical when you could get an llm to use the web and it worked and b. our browser infra was the source of 80% of our development time. Maintaining our browser infrastructure became its own engineering challenge - keeping browser pools healthy, managing session states and cookies, rotating proxies, handling CAPTCHA solving, and ensuring clean process termination. We got really good at running browser infrastructure at scale, but maintaining it was still stealing time away from building our actual products. So we wanted to build the product we wish we had.<p>Steel allows you to run any automation logic on our hosted instances of chromium. When you start a dedicated browser session you get stealth, proxies, and captcha solving out of the box. We do this by exposing websocket and http endpoints so you can connect to these instances with puppeteer, playwright, selenium(in beta), or raw CDP commands if you’re built like that.<p>Behind the scenes, we host several browser instances and route incoming connection requests to one of these instances. Our core design principle was to allow for every session to have its own dedicated browser instance + resources (currently 2gb vram and 2gb vcpu) while still allowing for quick session creation&#x2F;connection times. Our first thought was to have separate nodes running in a Kubernetes cluster, but the cost of hosting warm browser instances would be expensive (which would be reflected in the pricing), and the boot times would be too slow to handle the scale that some customers required. We got around this by deploying our browser instance image on a firecracker VM, taking advantage of the lightning-fast boot times and ability to share a root FS.<p>Today, we’re open-sourcing the code for the steel browser instance, with plans to open-source the orchestration layer soon. With the open-source repo, you get backwards compatibility with our node&#x2F;python SDKs, a lighter version of our session viewer, and most of the features that come with Steel Cloud. You can run this locally to test Steel out at an individual session level or one-click deploy to render&#x2F;railway to run remotely.<p>We&#x27;re really happy we get to show this to you all, thank you for reading about it! Please let us know your thoughts and questions in the comments.
    • HatchedLake7213 hours ago
      Would love to read an engineering blog about your journey from trying to run this on Kubernetes and ending up on Firecracker VM.
    • overu5896 days ago
      Very interesting. I’m not sure I immediately see your application either however I have been having similar thoughts.<p>After playing a popular indi game (Kenshi) I was wondering about the very simple automation interface the game relies upon. Why not a virtual world (with interfaces attaching any external source) in which business logic agents interact through the available interfaces of the environment, and other agents. Though tbh, I imagine the entire environment as implemented in layers of YAML style schemas and profiles. So all data, whether in a datastore, active instance, streamed or serialized can be related to in the same way. An envelope with attributes and content specified by the type attribute. The only code would then be the rendering environment, and whatever these agents call for stream processing.<p>Sort of a gamification of automation, though what can’t be beat is dead simple account of what any one thing is doing at a given time.
      • ohthatsnas6 days ago
        Hey, Nas here.<p>The concept of agents running wild with only schemas of how to interact with their environment + one another is something I’ve thought about a lot. With current models, I guess this would just be function calling or forced JSON outputs, but I think it would make for some very interesting results.<p>With Steel, we’re really just providing a way to do something similar to the “rendering engine” in this scenario but with the web. So agents can interface with their environments (websites) very easily and at scale (which comes with its own difficulties wrt deloying&#x2F;managing)
    • Oras5 days ago
      If these instances are shared, how do you segregate login details, sessions cookies, …etc? Are you always running them in incognito?
      • ohthatsnas5 days ago
        Instances are not shared. :) Everyone gets a dedicated session with dedicated resources. One session for every machine.
  • amelius1 hour ago
    Is there any AI out there that can detect and fill in WiFi login pages typically found on hotel and company guest networks?
  • potamic1 hour ago
    Browser as a service I understand, but what is the &quot;for AI agents&quot; part?
  • DanielKehoe9 hours ago
    Happy to see there&#x27;s a way to get browser automation for AI without building infrastructure to support it. Yet I don&#x27;t see examples of connecting an LLM to drive a web session, just examples of using Puppeteer or Playwright or Selenium to drive a web session. Presumably your user base knows how to write custom code for an interface between Claude or OpenAI API and Puppeteer&#x2F;Playwright&#x2F;Selenium. Sadly, I don&#x27;t know how to do that. Would it be fair to expect your documentation to help? What would you suggest to get started?<p>Is the interface between Steel, or Puppeteer&#x2F;Playwright&#x2F;Selenium, something that might be implemented in the new Anthropic Model Context Protocol, so there&#x27;s less custom code required?
    • pkiv8 minutes ago
      I’d recommend checking out Stagehand if you want to use something that’s more AI first! It’s like the AI powered successor to playwright: <a href="https:&#x2F;&#x2F;github.com&#x2F;browserbase&#x2F;stagehand">https:&#x2F;&#x2F;github.com&#x2F;browserbase&#x2F;stagehand</a><p>(I am one of the authors!)
  • tndibona2 hours ago
    Can this defeat perimeterX used by Zillow?
  • cranberryturkey6 days ago
    I don&#x27;t understand what problem you&#x27;re solving that puppeteer doesn&#x27;t already solve.
    • huss976 days ago
      We love Puppeteer and use it to power our API!<p>We don&#x27;t compete with Puppeteer&#x2F;Playwright&#x2F;Selenium but we&#x27;re focused on solving the problem of hosting Chromium browsers in the cloud.<p>The workflow jump we&#x27;ve seen ourselves and from customers is that it&#x27;s pretty straightforward to build these scripts locally, but the moment you want to run them in prod, you now need to deal with a ton of overhead around packaging up to docker, resource management, scaling, etc. We want to make that trivial :)
      • peab51 minutes ago
        I can relate to this exact experience and I think anybody who&#x27;s tried to bring scraping to prod can as well!
      • cranberryturkey6 days ago
        I have never had any issues running puppeteer on a server, what problems are you solving that would arise?
        • huss975 days ago
          Yeah, that’s totally fair! Not everybody will. In our experience, the problems we solve are the creeping kind that develop over time and show themselves as maintenance costs.<p>Let’s say we want to add web automation to our app, and we&#x27;ve set up a single instance of Chrome hosted on a server somewhere that we connect to and drive with Puppeteer. Great, now we need to ensure incoming requests&#x2F;sessions are managed properly (&gt;1 active session). If we have a ton of active requests, this becomes annoying because now the resources on our server are being eaten up — so we would need to scale horizontally (or vertically) but now that comes with potential downtime and cold start issues. If we decide to keep this instance of Chrome running 24&#x2F;7 then we need to bake in resource management to handle memory leaks and connection issues. If we don’t keep them alive, then this comes with significant cold start times (10s+).<p>Now, let’s say we want to support a real-time scraping use case that requires multiple browsers in parallel. At this point, we would need to use something like Kubernetes with warm pods or maybe lambdas&#x2F;cloud run. But even those have their own set of challenges&#x2F;costs. Managing Kubernetes can get complicated and expensive quickly, especially if you’re not already using it for your app. On the other hand, serverless options like Lambda or Cloud Run introduce latency issues (cold starts) and often don’t provide the flexibility you need for long-running sessions or custom configurations.<p>Then, beyond the infra, we&#x27;ll probably need to build capabilities to not get stopped out by anti-bot measures like proxy mgmt, fingerprint rotation, captcha solving, etc.<p>Pretty quickly, as you grow, a small-scale project can turn into a pretty big maintenance project. Building parsers&#x2F;agents&#x2F;scripts is hard enough, so we&#x27;re hoping to make the infra side as easy as possible.
      • bleachpedro36 days ago
        So this is the Vercel approach to web bots? Hopefully less predatory aha..
        • huss976 days ago
          haha, I love this analogy! If we can do for deploying web automation to prod what Vercel did for deploying front-ends, I&#x27;d be a happy camper. With even friendlier pricing of course :P
      • meiraleal3 hours ago
        And why run in the cloud in place of my own computer, with my own IP that won&#x27;t be flagged for being an AWS IP?
  • meiraleal3 hours ago
    Why not a browser extension?
    • ohthatsnas7 minutes ago
      A browser extension would have to run on individual&#x2F;personal browser; we&#x27;re focused on providing infrastructure to run hundreds of browsers that you can connect to with code -- whether for automation or information retrieval.<p>Curious, what made you think browser extension first? :)
  • benzguo12 hours ago
    beautiful docs + api ref! what are you using? (cool that you&#x27;re doing open-source browserbase also, excited to check this out)
    • marclave2 minutes ago
      theyre using scalar :)<p><a href="https:&#x2F;&#x2F;scalar.com" rel="nofollow">https:&#x2F;&#x2F;scalar.com</a> <a href="https:&#x2F;&#x2F;github.com&#x2F;scalar&#x2F;scalar">https:&#x2F;&#x2F;github.com&#x2F;scalar&#x2F;scalar</a><p>(disclaimer: im the co-founder &amp; ceo of scalar)
  • Oras5 days ago
    Looking interesting, will definitely give it a go.<p>Btw, there is inconsistency between pricing page and pricing on docs.<p>Pricing page for developers is $59 Pricing in docs for developers is $99
    • huss975 days ago
      awesome - let us know how it goes!<p>great catch on pricing mismatch, just fixed, thank you :)
  • puppycodes10 hours ago
    I cant find any information on models you support?
  • doritopope5 days ago
    will definitely check this out. i saw the pricing model on the site, what&#x27;s the motivation around being open-source here if you&#x27;re providing the infra free of charge?
    • ohthatsnas5 days ago
      Yeah, good question! The reason we went open-source is really about transparency and flexibility. We want people to trust what they’re using and have the option to self-host if that’s what makes the most sense for them. Open-sourcing the browser API also lets us build a better product with input and contributions from the community—it’s a win-win.<p>As for the infra, it’s not totally free—our managed service is there for anyone who doesn’t want the hassle of hosting and scaling everything themselves (although it does have a generous free plan). Going open-source just gives people the choice: run it yourself if you want full control, or use our managed option for convenience and scale. It’s all about making browser automation more accessible without forcing people into one path.