List searches
documentedReturn all saved searches.
POST /noteStore/listSearchesSearchesno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
I looked up the official Evernote Cloud API docs. NoteStore.listSearches is a method on the Thrift-based NoteStore API, and the exact HTTP endpoint URL is not a fixed public REST path. Instead, the NoteStore URL is obtained from the UserStore for each account, and calls are made to that NoteStore URL (e.g., in development you’d point at the sandbox host). In other words, there isn’t a stable REST endpoint like /noteStore/listSearches you can call directly with a JSON body; you typically use the SDKs or a Thrift RPC payload to invoke listSearches. See the official NoteStore.listSearches reference and the guidance that you must retrieve a NoteStore URL from UserStore first. ([dev.evernote.com](https://dev.evernote.com/doc/reference/NoteStore.html))