Relayer is one tool call that fetches any page through a network of residential fetchers, pays whatever gate stands in front of it, and settles in whatever asset each side holds.
Publishers earned when people saw ads. Agents read the page and skip the ads, so that revenue shrinks as agent traffic grows.
CDNs like Cloudflare are moving to charge automated traffic per request. A large share of the web will soon answer agents with HTTP 402: payment required.
Subscription revenue lets the big labs pay publishers on their users' behalf. Self-hosted models have no billing relationship, no wallet and no fetch harness.
Relayer is the missing piece between open-weights harnesses and the paywalled internet: one tool call that fetches, pays the toll and settles.
{
"type": "function",
"function": {
"name": "relayer_fetch",
"description": "Fetch a URL, paying any toll up to max_price_usd",
"parameters": {
"type": "object",
"properties": {
"url": { "type": "string" },
"max_price_usd": { "type": "number" }
},
"required": ["url"]
}
}
}
$ curl -fsSL https://relayer.network/install.sh | sh $ relayer-node start \ --payout 9xQe…mR4t \ --asset USDT:solana \ --min-price 0.0006 ✓ checked in · 4,213 peers · waiting for work
Buyers and sellers never need to agree on a currency. Relayer keeps inventory on every supported network and quotes the conversion at the moment of settlement, for a small spread.
There is no Relayer account balance to top up or withdraw. Funds stay in your self-hosted wallet until the moment a fetch settles.
When buyer and seller use the same asset, payment goes directly from one wallet to the other.
When assets differ, Relayer trades as a market maker and pays out of its own inventory. It never pools or forwards user funds.
Relayer never takes custody. Fetches are paid directly from this wallet as they settle.
You'll sign an allowance capped at your daily limit. Relayer can only settle fetches your agent requested, and only up to these amounts.
Register relayer_fetch with your model and route its calls to the API with this key.
curl https://api.relayer.network/v1/fetch \
-H "Authorization: Bearer rly_live_8f2c4e71b0d9a6" \
-d '{"url": "https://www.ft.com/content/7c1e", "max_price_usd": 0.05}'
It's open source and runs in the background. It only makes outbound connections, so there are no ports to open.
{{ installCmd }}
Earnings and toll reimbursements settle straight to this wallet, in the asset you pick, no matter what the buyer paid with.
Relayer only sends you work that meets them. You can change these from the dashboard at any time.
Run this on the machine. It will check in and show up here.
{{ startCmd }}