Skip to main content
POST
/
fork
/
{id}
/
probe
advance the fork and evaluate assertions in a single atomic call
curl --request POST \
  --url http://localhost:3917/fork/{id}/probe \
  --header 'Content-Type: application/json' \
  --data '
{
  "assertions": [
    "<string>"
  ],
  "snapshot_after": true,
  "snapshot_before": true,
  "ticks": 1
}
'

Path Parameters

id
string
required

Fork id

Body

application/json

Body accepted by /fork/{id}/probe. Matches the main /probe endpoint's fields so agents can use the same shape.

assertions
string[] | null
snapshot_after
boolean
snapshot_before
boolean
ticks
integer<int64>
Required range: x >= 0

Response

200 - application/json

Fork advanced + assertions evaluated (or ok:false if not found).