Quick start
Finish the first job from Chrome, Cloud, or your product.
1Create an account
Create the workspace first. Generate an API key only when you need programmatic access.
Create a workspace2Choose where it runs
Pick the surface closest to the job. You can move the same outcome between them later.
Find every open support ticket from Acme.
Chrome extension
Work in the Chrome browser already on your device, including sites behind logins, SSO, and internal tools.
Cloud
Run and observe browser jobs away from your laptop. Schedule them or send the result to another system.
POST /agent200{ "result": "…" }API and MCP
Call the agent from an app, CLI, SDK, or MCP client. Start with one job and one returned result.
3Know the endpoints
/scrapeReturns page content and the accessibility tree for your own model.
/agentPlans and runs a job in a Cloud browser, then returns the result.
/mcpLets an MCP client use your signed-in Chrome session or Cloud tools.
4Send the first request
Call /agent with one job, one or more URLs, and the response detail you need.
curl -X POST "https://api.rtrvr.ai/agent" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"input": "Return the top 10 products with price and source URL",
"urls": ["https://example.com/products"],
"response": { "verbosity": "final" }
}'YOUR NEXT RUN