Find notes by property.
Returns notes where metadata[key] == value.
Query Parameters
key*Key
Property key
value*Value
Property value
limit?Limit
Maximum results
Response Body
application/json
application/json
curl -X GET "https://example.com/memory/zettel/by-property?key=string&value=string"null{
"detail": [
{
"loc": [
"string"
],
"msg": "string",
"type": "string",
"input": null,
"ctx": {}
}
]
}Find Dead Code
Find potentially dead (unreferenced) functions in an indexed codebase. A function is considered "dead" when: - No other function calls it (no incoming CALLS edges) - It is not a test function, route handler, or dunder method - It has no entry-point decorators (route, click, celery, etc.) Returns a list of potentially unused functions sorted by file path.
Find Notes By Tag
Find notes by tag. Returns all notes tagged with the specified tag.