Get started in 5 minutes
Create an account and choose the interface that fits your workflow.
Create Your Account
Sign up for rtrvr.ai Cloud
Get instant access with your API key ready immediately.
Go to CloudPick Your Interface
Browser Extension
The most powerful way to automate. Operates directly on your logged-in browser—using your cookies, SSO, and internal sessions.
Install ExtensionCloud Website
Run agents on rtrvr's managed browser cluster. Best for scaling workflows to thousands of URLs without consuming local resources.
Open DashboardAgent & Scrape APIs
Integrate agent intelligence into your own apps. Use /agent for agentic tasks and /scrape for raw data extraction.
API ReferenceWhatsApp Bot
Trigger workflows and get real-time status updates via voice or text. Perfect for mobile research and on-the-go notifications.
Connect WhatsAppThree API Offerings
/scrape
Get a smart DOM representation of any page. Returns raw text and a simplified accessibility tree ready for your own LLM.
POST /scrape/agent
Trigger end-to-end agentic workflows. Spins up a cloud browser, reasons through your prompt, and returns results.
POST /agent/mcp
Remotely trigger your own browser. Control your local logged-in Chrome via the extension from anywhere via HTTP or MCP.
POST /mcpYour First Task
// Agentic Job Application
"Apply to the job at this URL using my stored resume. Fill all fields and notify me before submitting."
// Agentic Paginated Scraping
"Crawl the first 5 pages of Amazon results for 'mechanical keyboards' and extract prices to a Google Sheet."
Your First API Call
The /agent endpoint spins up a cloud browser, reasons through the task with our Planner agent, and returns structured JSON data.
curl -X POST https://api.rtrvr.ai/agent \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"input": "Extract product prices from example.com"}'