Business Frameworks — Set the hurdle rate, applied to the caller's own numbers
Business Frameworks — Set the hurdle rate, applied to the caller's own numbers. Send the long-bond yield and two or three asset betas; get r for this business, with the sub-$5M and concentration rules applied. Deterministic (the node's rule, no model); returns the worked decision plus the node text and its public citations. Schema at GET /apply/risk/decide/hurdle.
10000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-15
updated
Provider
business-frameworks.matryoshka-paradigms.workers.dev · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xbBaCd5111E0Ca3a52DdAA39D4723Cf75C1A75D91",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"asset_betas": [
1.4,
1.6
],
"long_bond_yield_pct": 4,
"market_premium_pct": 6,
"personal_premium_pct": 2,
"plan_probability": 0.7,
"revenue_usd": 3000000
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"applied": {
"action": [
"<what to do first>"
],
"basis": [
"<where the node ends and the arithmetic begins>"
],
"check": "<when to re-run>",
"figures": "<the computed figures>",
"verdict": "<the decision, worked for these inputs>"
},
"handle": "business-frameworks/risk/decide/[email protected]",
"node": {
"cites": [],
"text": "<the node text>"
}
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"asset_betas": {
"description": "asset betas of two or three comparable companies, debt stripped out",
"items": {
"type": "number"
},
"minItems": 1,
"type": "array"
},
"long_bond_yield_pct": {
"description": "long government bond yield, percent",
"type": "number"
},
"market_premium_pct": {
"default": 6,
"description": "market premium in points; the node's rule of thumb is roughly six",
"type": "number"
},
"personal_premium_pct": {
"default": 0,
"description": "a concentrated owner's stated personal premium, in points — stated, never hidden",
"type": "number"
},
"plan_probability": {
"description": "below $5M: probability the plan works",
"maximum": 1,
"minimum": 0,
"type": "number"
},
"revenue_usd": {
"description": "annual revenue; below $5M the probability of the plan goes into the cash flows, not the rate",
"type": "number"
}
},
"required": [
"long_bond_yield_pct",
"asset_betas"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://business-frameworks.matryoshka-paradigms.workers.dev/apply/risk/decide/hurdle" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://business-frameworks.matryoshka-paradigms.workers.dev/apply/risk/decide/hurdle");
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://business-frameworks.matryoshka-paradigms.workers.dev/apply/risk/decide/hurdle")
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/13485.json, and this resource appears in /discovery/resources and /discovery/search.