If you’ve ever tried to automate something on a website that doesn’t offer a public API, you know the pain. You end up wrestling with Puppeteer scripts, dealing with flaky selectors, and praying nothing breaks when the site updates its layout. [Anything API](https://anything.notte.cc/) from the [Notte](https://www.notte.cc/) team takes a completely different approach, and honestly, it’s one of the most practical developer tools I’ve come across recently.
The idea is simple: you describe a browser task in plain language — something like “get the price and reviews for any Amazon product” — and Anything API’s agent figures out the workflow, runs through it in a browser session, and then generates a production-ready API endpoint you can call. No browser needed at runtime. You get structured JSON back, with authentication, headers, and request formatting all handled for you. You can deploy it serverless, schedule it on cron, whatever works for your stack.
What makes this more than just another scraping tool is the hybrid architecture. It combines deterministic scripts with AI reasoning, so the initial workflow discovery is smart, but the resulting endpoint is reliable and fast — no spinning up a headless browser on every call. That’s a huge deal for production use cases where latency and cost matter.
The developer community clearly agrees. [Anything API hit #1 on Product Hunt](https://www.producthunt.com/products/notte) on March 4th with 433 upvotes. The [Notte team announced it on X](https://x.com/nottecore/status/2027096873979572501), and there’s a solid [technical writeup on DEV Community](https://dev.to/nottelabs/anything-api-turn-any-browser-workflow-into-a-production-ready-api-hnb) worth reading if you want the deeper details. The core [Notte framework is open source on GitHub](https://github.com/nottelabs/notte) too, which is nice — you can dig into the internals and see how the perception layer turns webpages into structured actions.
For anyone building integrations with sites that don’t have APIs (which, let’s be honest, is way too many sites), this feels like a genuinely useful tool rather than a gimmick. Give it a look.

Leave a comment