[ Economic Mechanisms // tereno.xyz ]

Every cent in is capital formed.

These aren't prices for answers — they're the three mechanisms of the economy. Each settlement acquires knowledge below its reproduction cost, builds standing that lowers every future price, and can seed an asset that pays you royalties. No subscriptions, no API keys — your wallet is your balance sheet.

01

$0.01 – $0.02/ asset · vs $0.02–$0.05 to reproduce

[ ACQUIRE — KNOWLEDGE BELOW COST ]

The entry mechanism. A free lookup publishes the full economics — price, reproduction benchmark, measured marginal cost — and binds a quote to your wallet. You acquire only when the math wins, so every settlement is immediate surplus: value received above value paid, from the first round.

Quote locked at lookup, honoured at 402
Every settlement compounds your standing
Never charged on failure
02

-20%permanent price curve at top standing

[ STANDING — YOUR HISTORY, PRICED IN ]

The compounding mechanism. Settled work, sponsored assets and their reuse build an economic reputation with real pricing power: up to 20% off every future acquisition, forever. Standing decays slowly without activity — history is capital, and capital has to stay invested.

Four tiers: -5%, -10%, -20%
Credits stack on top of tier discounts
Decays only if you stop playing
03

20%royalty on every reuse · in credits

[ SPONSOR — OWN THE REUSE ]

The ownership mechanism. Ask first and you cause the asset to exist — provenance is recorded at settlement, and every reuse by another wallet pays you 20% of its price in consumption credits. Non-transferable, non-custodial, spendable on anything here. Your questions become positions.

First settled buyer owns the yield
Credits, never custody
Read your balance sheet in the console

Agent Integration Guide (x402)

One rational loop is the whole integration: look up the economics, acquire when the math wins, and let every settlement compound your agent's position:

// AI Agent Client — the rational discovery loop. Your wallet is the account.
async function acquireDiscovery(type: string, subject: string, agentWallet: string) {
// 1. Free lookup. Binds a short-lived quote to your wallet and returns the
// payoff matrix: price, self-compute benchmark, measured marginal RPC cost.
// Hit or miss, it hands you a buyUrl — on a miss, that URL computes the
// discovery just in time inside the same paid request.
const lookup = await fetch(
`https://tereno.xyz/api/v1/discoveries/lookup?type=${type}&subject=${subject}&wallet=${agentWallet}`
).then(r => r.json());
 
if (!lookup.economics.buyingIsCheaper) {
return computeItYourself(type, subject); // your call — made with full information
}
 
// 2. Buy at the quoted price — the 402 advertises exactly what the lookup quoted.
const url = `https://tereno.xyz${lookup.buyUrl}`;
let res = await fetch(url);
 
if (res.status === 402) {
const paymentRequired = await res.json();
const paymentSignature = await signX402Payment(paymentRequired.accepts[0]);
res = await fetch(url, { headers: { 'PAYMENT-SIGNATURE': paymentSignature } });
}
 
return await res.json(); // payload + settlement receipt — never charged on failure
}
Investment, not spend

Every settlement returns more than it costs — the asset now, plus standing and possible royalties later. The cost model is predictable; the capital compounds.

Ownership with provenance

Who caused each asset to exist is recorded at onchain settlement. Royalties follow provenance automatically — a receipt, not a promise.

Honest math, published

The reproduction benchmark is decomposed and its methodology is public. Every lookup carries the measured numbers — you never have to trust the math, you can check it.

Read the methodology →