Quick Start
Get started with rtrvr.ai in 2 minutes.
1Create Your Account
Sign up for rtrvr.ai Cloud
Get instant access with your API key ready immediately.
Go to Cloud2Pick Your Interface
Chrome Extension
Automate your logged-in browser directly — cookies, SSO, internal sessions all preserved.
Install ExtensionCloud Platform
Managed browser cluster. Scale workflows to thousands of URLs without consuming local resources.
Open DashboardAgent & Scrape APIs
Integrate agent intelligence into your apps. /agent for tasks, /scrape for raw DOM extraction.
API ReferenceWhatsApp Bot
Trigger workflows and receive status updates via voice or text from your phone.
Connect WhatsApp3Three API Endpoints
/scrape
Smart DOM representation of any page. Returns raw text + accessibility tree for your own LLM.
POST /scrape/agent
End-to-end agentic workflows. Cloud browser + planner agent + structured results.
POST /agent/mcp
Control your logged-in Chrome remotely via HTTP or MCP protocol.
POST /mcp4Your First API Call
The /agent endpoint spins up a cloud browser, reasons through the task with our Planner agent, and returns structured JSON data. No polling needed — results come back inline.
curl -X POST "https://api.rtrvr.ai/agent" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"input": "Extract the top 10 product prices from this page",
"urls": ["https://example.com/products"],
"response": { "verbosity": "final" }
}'Get your API key
Generate your key from rtrvr.ai/cloud → API Keys. Keep it server-side — never embed in client code.
// Lead Enrichment
“Visit each company website in my CSV and extract the CEO name, employee count, and tech stack.”
// Paginated Scraping
“Crawl the first 5 pages of Amazon results for ‘mechanical keyboards’ and extract prices.”