Get evolution history for a procedure.
Returns a list of evolution events showing how the procedure was discovered and refined over time.
Args: procedure_id: The procedure ID to get history for limit: Maximum number of events to return (default 20) offset: Number of events to skip (default 0)
Returns: Evolution history with current version and event list
Path Parameters
Query Parameters
Maximum events to return
Pagination offset
Response Body
application/json
application/json
curl -X GET "https://example.com/memory/procedures/string/evolution"null{
"detail": [
{
"loc": [
"string"
],
"msg": "string",
"type": "string",
"input": null,
"ctx": {}
}
]
}Get Procedure Evolution Event
Get detailed information about a specific evolution event. Returns the full content snapshot and diff for a single evolution event. Args: procedure_id: The procedure ID event_id: The event ID to retrieve Returns: Full event detail including content snapshot and changes
Get Procedure Match Stats
Return aggregated procedure match statistics for the current workspace.