The Standard Reserve (TSR), an on-chain reserve protocol on Robinhood Chain
The Standard Reserve (TSR), an on-chain reserve protocol on Robinhood Chain. Live Branch license auction state, read straight from the chain.
20000 (raw units)
price
9
calls / 30d
9
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": "20000",
"maxTimeoutSeconds": 3600
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {},
"type": "http"
},
"output": {
"example": {
"as_of_block": 63512040,
"basis": "auction_live",
"chain_id": 4663,
"current_day": 42,
"current_pace_inventory_duration_seconds": 86400,
"current_price_raw": "150000000000000000",
"day_clock": {
"auction_day_seconds": 86400,
"basis": "derived",
"current_day": 42,
"day_started_at": "2026-09-15T01:04:04Z",
"next_day_starts_at": "2026-09-16T01:04:04Z",
"seconds_to_next_day": 80683
},
"day_floor_price_raw": "50000000000000000",
"day_start_price_raw": "1250000000000000000",
"estimate_basis": "current pace, not a prediction",
"last_poll_age_sec": 2.38,
"licenses_per_day": 1000,
"network": "robinhood",
"paused": false,
"phase": "live",
"polled_at": "2026-09-15T03:39:21Z",
"quote_1_unit_price_raw": "150000000000000000",
"remaining_today": 601,
"sold_last_15m": 9,
"sold_last_5m": 3,
"sold_last_60m": 22,
"sold_today": 399,
"started": true,
"velocity_per_min_15m": "0.6000"
},
"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": {},
"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"
},
"basis": {
"type": "string"
},
"chain_id": {
"type": "integer"
},
"current_day": {
"type": "integer"
},
"current_pace_inventory_duration_seconds": {
"type": "integer"
},
"current_price_raw": {
"type": "string"
},
"day_clock": {
"properties": {
"auction_day_seconds": {
"type": "integer"
},
"basis": {
"type": "string"
},
"current_day": {
"type": "integer"
},
"day_started_at": {
"type": "string"
},
"next_day_starts_at": {
"type": "string"
},
"seconds_to_next_day": {
"type": "integer"
}
},
"type": "object"
},
"day_floor_price_raw": {
"type": "string"
},
"day_start_price_raw": {
"type": "string"
},
"estimate_basis": {
"type": "string"
},
"last_poll_age_sec": {
"type": "number"
},
"licenses_per_day": {
"type": "integer"
},
"network": {
"type": "string"
},
"paused": {
"type": "boolean"
},
"phase": {
"type": "string"
},
"polled_at": {
"type": "string"
},
"quote_1_unit_price_raw": {
"type": "string"
},
"remaining_today": {
"type": "integer"
},
"sold_last_15m": {
"type": "integer"
},
"sold_last_5m": {
"type": "integer"
},
"sold_last_60m": {
"type": "integer"
},
"sold_today": {
"type": "integer"
},
"started": {
"type": "boolean"
},
"velocity_per_min_15m": {
"type": "string"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://api.onesource.io/standard/v1/branches/auction/live" # -> 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/branches/auction/live");
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/branches/auction/live")
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/73.json, and this resource appears in /discovery/resources and /discovery/search.