Detect knowledge clusters in your Zettelkasten.
Finds groups of highly interconnected notes that form coherent knowledge domains.
Query Parameters
Minimum cluster size
Clustering algorithm
Response Body
application/json
application/json
curl -X GET "https://example.com/memory/zettel/clusters"null{
"detail": [
{
"loc": [
"string"
],
"msg": "string",
"type": "string",
"input": null,
"ctx": {}
}
]
}Get Changes
Get all changes to an item in time range. Returns detailed change log with old/new values and changed fields.
Get Code Context
Fetch a code entity and its 1-hop graph context in a single response. Returns the entity itself plus categorised neighbour lists: - **calls** — entities this entity calls (outgoing CALLS edges) - **called_by** — entities that call this one (incoming CALLS edges) - **tests** — test entities that cover this entity (incoming TESTS edges) - **inherits** — classes this entity inherits from (outgoing INHERITS edges) - **defines** — entities defined inside this one (outgoing DEFINES edges) Empty lists are returned for edge categories with no neighbours.