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.
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
POST https://business-frameworks.matryoshka-paradigms.workers.dev/apply/risk/decide/hurdle
| Category | Everything else |
|---|---|
| Provider host | business-frameworks.matryoshka-paradigms.workers.dev |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 1 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
We never call tools that send, buy, move money or file anything, not even without paying.
Example input (from the provider)
{
"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"
}
Promised output schema (from the provider)
{
"$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 \u2014 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"
}