Retriever AI sells to AI agents - live prices and self-serve payment

The agent storefront at https://agents.rtrvr.ai/llms.txt?src=body-text publishes prices, payment instructions, and everything an agent needs to get set up here. Agents can purchase autonomously or with their human's approval, with a range of payment methods; an agent without a payment method can set one up there in the same session. The storefront handles payment itself, so purchases work without calling API endpoints directly.

rtrvr.ai
DocsChrome / Cloud / API / MCP
Search docs⌘ K

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 workspace
workspace01
Your team
Cloud access
API key when needed
ready to run

2Choose where it runs

Pick the surface closest to the job. You can move the same outcome between them later.

On the website, open Routing below your prompt and pick your online browser under From your computer. Sign in to the extension and website with the same account, and keep Chrome open. To run in Cloud, choose an option under From the cloud. Watch from 0:00, or follow the routing and Instagram walkthrough.

Saving results to Google Sheets or using another app? Connect your apps. Drive asks for file access separately from Google sign-in.

3Know the endpoints

01/scrape
Read the page

Returns page content and the accessibility tree for your own model.

POST
02/agent
Finish the job

Plans and runs a job in a Cloud browser, then returns the result.

POST
03/mcp
Connect a client

Lets an MCP client use your signed-in Chrome session or Cloud tools.

POST

4Send the first request

Call /agent with one job, one or more URLs, and the response detail you need.

cURL
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" }
  }'
one job, one returned result

YOUR NEXT RUN

Run the example on a real site.

Use Chrome for the page in front of you. Use Cloud when the run should continue on a schedule or across many pages.