SmartMemory
GET
/memory/procedures/{procedure_id}/evolution

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

procedure_id*Procedure Id

Query Parameters

limit?Limit

Maximum events to return

offset?Offset

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": {}
    }
  ]
}