Skip to content

Prophecies

Prophecies are predictive outputs generated by the simulation engine. They represent the engine’s forward-looking assessments based on the current simulation state and trajectory.

Prophecies are read-only — they are produced by the engine, not submitted by the caller.

GET /v1/simulations/{id}/prophecies

Returns a paginated list of prophecies generated for a simulation.

Scope required: simulation:read

ParameterTypeDescription
iduuidSimulation ID
ParameterTypeDefaultDescription
limitinteger50Results per page (1–200)
offsetinteger0Pagination offset
orderstring"asc"Sort order: "asc" or "desc"
{
"data": [
{
"id": "p1r2o3p4-...",
"simulationId": "a1b2c3d4-...",
"data": {
"predictedPhase": "volatile",
"confidence": 0.87,
"horizon": 50
},
"createdAt": "2025-06-15T10:36:00.000Z"
}
],
"pagination": {
"limit": 50,
"offset": 0,
"total": 7
}
}
FieldTypeDescription
iduuidProphecy identifier
simulationIduuidParent simulation
dataobjectProphecy payload (structure varies by engine version)
createdAtstringISO 8601 timestamp
Terminal window
curl "https://api.anankelabs.ai/v1/simulations/a1b2c3d4-.../prophecies?limit=10" \
-H "X-Api-Key: krs_..."