The Standard Reserve (TSR), an on-chain reserve protocol on Robinhood Chain
The Standard Reserve (TSR), an on-chain reserve protocol on Robinhood Chain. Simulates keep, selective, and aggressive Branch-expansion strategies over a horizon, seeded from this API's own live routes. A simulation for exploring tradeoffs, not a forecast.
50000 (raw units)
price
3
calls / 30d
3
unique payers
2026-09-18
updated
Provider
api.onesource.io · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x52E29e0d2Aa49bfBfC548C0A9F2196F4aa51f3ea",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "50000",
"maxTimeoutSeconds": 3600
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"budget_eth_raw": "5000000000000000000",
"charter_id": 42,
"horizon_days": 30
},
"type": "http"
},
"output": {
"example": {
"as_of_block": 63499000,
"assumptions": {
"budget_eth_raw": {
"source": "user_supplied",
"value": "5000000000000000000"
},
"exit_mode": {
"source": "default",
"value": "all"
},
"horizon_days": {
"source": "user_supplied",
"value": 30
},
"own_branches": {
"source": "seeded_live",
"value": 4
}
},
"assumptions_text": "This plan is a simulation, not a forecast. It assumes today's issuance rate, license price, and pool price hold steady for every day of the horizon.",
"basis": "scenario_plan",
"chain_id": 4663,
"estimate": true,
"limitations": [
"The bank's multiplier (issuance rate) is held fixed for the whole horizon; it is not simulated to move with system-wide pressure.",
"This is a simulation, not a forecast."
],
"network": "robinhood",
"strategies": {
"aggressive": {
"branches_after": 34,
"branches_before": 4,
"licenses_bought": 30
},
"keep": {
"branches_after": 4,
"branches_before": 4,
"delta_vs_keep_eth_raw": null,
"licenses_bought": 0,
"net_cash_eth_raw": "470000000000000"
},
"selective": {
"branches_after": 8,
"branches_before": 4,
"licenses_bought": 4
}
}
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"properties": {
"budget_eth_raw": {
"type": "string"
},
"charter_id": {
"minimum": 0,
"type": "integer"
},
"credits_raw": {
"type": "string"
},
"exit_mode": {
"enum": [
"all",
"one",
"none"
],
"type": "string"
},
"horizon_days": {
"maximum": 365,
"minimum": 1,
"type": "integer"
},
"own_branches": {
"minimum": 0,
"type": "integer"
},
"selective_interval_days": {
"minimum": 1,
"type": "integer"
}
},
"required": [
"budget_eth_raw"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"description": "Endpoint-specific response payload",
"properties": {
"as_of_block": {
"type": "integer"
},
"assumptions": {
"properties": {
"budget_eth_raw": {
"properties": {
"source": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"exit_mode": {
"properties": {
"source": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"horizon_days": {
"properties": {
"source": {
"type": "string"
},
"value": {
"type": "integer"
}
},
"type": "object"
},
"own_branches": {
"properties": {
"source": {
"type": "string"
},
"value": {
"type": "integer"
}
},
"type": "object"
}
},
"type": "object"
},
"assumptions_text": {
"type": "string"
},
"basis": {
"type": "string"
},
"chain_id": {
"type": "integer"
},
"estimate": {
"type": "boolean"
},
"limitations": {
"items": {
"type": "string"
},
"type": "array"
},
"network": {
"type": "string"
},
"strategies": {
"properties": {
"aggressive": {
"properties": {
"branches_after": {
"type": "integer"
},
"branches_before": {
"type": "integer"
},
"licenses_bought": {
"type": "integer"
}
},
"type": "object"
},
"keep": {
"properties": {
"branches_after": {
"type": "integer"
},
"branches_before": {
"type": "integer"
},
"delta_vs_keep_eth_raw": {
"type": [
"string",
"null"
]
},
"licenses_bought": {
"type": "integer"
},
"net_cash_eth_raw": {
"type": "string"
}
},
"type": "object"
},
"selective": {
"properties": {
"branches_after": {
"type": "integer"
},
"branches_before": {
"type": "integer"
},
"licenses_bought": {
"type": "integer"
}
},
"type": "object"
}
},
"type": "object"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://api.onesource.io/standard/v1/decisions/plan" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://api.onesource.io/standard/v1/decisions/plan");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://api.onesource.io/standard/v1/decisions/plan")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/103.json, and this resource appears in /discovery/resources and /discovery/search.