rtrvr.ai logo
rtrvr.ai
PricingBlogDashboard

Core Agent

Getting StartedWeb AgentSheets Workflows

Building Blocks

Recordings & GroundingTool CallingKnowledge Base (RAG)

Platform Access

API OverviewAgent APIScrape APIBrowser as API/MCP

Automation

ShortcutsTriggers & WebhooksSchedules

Account & Security

Cookie SyncPermissions & Privacy
Getting StartedQuick Start

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 Cloud
Instant Access
Free Tier
No Credit Card

2Pick Your Interface

Chrome Extension

Automate your logged-in browser directly — cookies, SSO, internal sessions all preserved.

Install Extension

Cloud Platform

Managed browser cluster. Scale workflows to thousands of URLs without consuming local resources.

Open Dashboard

Agent & Scrape APIs

Integrate agent intelligence into your apps. /agent for tasks, /scrape for raw DOM extraction.

API Reference

WhatsApp Bot

Trigger workflows and receive status updates via voice or text from your phone.

Connect WhatsApp

3Three 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 /mcp

4Your 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
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.”

Previous
Overview
Next
Integrations

On this page

1. Create Your Account2. Pick Your Interface3. Three API Endpoints4. Your First API Call