ZeqPrice — Fair Value Discovery
Fair value computation at each Zeqond. R(t)-modulated pricing shows how value oscillates around equilibrium — temporal price transparency.
| Endpoint | POST /api/finance/price/discover |
| Auth | api-key |
| Rate limit | 30/min |
| Category | finance |
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
baseValue | number | Yes | Base asset value. |
volatility | number | Yes | Annual volatility (0–1). |
riskFreeRate | number | No | Risk-free rate. Default: 0.05. |
Returns
{ fairValue, R_t_modulated, confidence, zeqond, temporalSpread }
Example
curl -sS -X POST \
-H "Authorization: Bearer zsm_..." \
-H "Content-Type: application/json" \
-d '{
"baseValue": 0,
"volatility": 0,
"riskFreeRate": 0.05
}' \
"https://zeqsdk.com/api/finance/price/discover"
This protocol is a named building block — one of the operations you
compose inside a state contract. Call it directly with
the request above, or invoke it from a contract that fires on your machine's
clock. Browse the whole library at GET /api/protocols; fetch this one at
GET /api/protocols/zeq-price.