ade find: Search everything the parse found.ade crop: Save any element’s region of the page as an image.ade view: Open the document in your browser with every element outlined.
ade history list. If you don’t have a parse yet, start with the Quickstart.
Find Elements
Useade find to search a parse. Give it a job item ID and a search term:
Command
Output
Read a Match
Each match is an element: one piece of the parsed document, such as a text block, a table, a single table cell, or a signature region. The API documentation calls elements blocks. A term can match at more than one level, so searching for “Jordan” matches both the table and the one cell inside it, and you can work with whichever fits your task.Narrow the Search
The search term matches as a case-insensitive substring, and matches always come back in document order. To adjust what comes back:- Use
--regexto treat the term as a regular expression. - Use
--typeto keep only certain element types,--pageto keep one page, and--limitto cap the count. Filters combine freely. - Omit the search term to list every element.
- Add
--id-onlyto print just the element IDs for piping.
Crop Elements as Images
Useade crop to save an element’s region of the original page as a PNG image. The image is evidence: proof you can point at, showing exactly where in the document a value came from.
Crop one element by ID, or a whole selection at once using the same filters ade find takes (--type, --page, --all). Images render at 300 dpi by default and land in the job item’s crops folder.
Command
Output
View the Document in Your Browser
Useade view to see the parse laid over the original document. The command builds one HTML file: the document’s pages with every element outlined, next to the parsed markdown. Select an element on either side and the other side highlights to match. On a terminal, the file opens in your browser automatically.
To return to the exact spot a value came from, pass --element-id. The output includes a deep_link URL that opens the viewer on this machine with that element already highlighted. To show someone else, send them the view.html file itself: it is self-contained, and the same #element= ending works on their copy. The viewer builds once and rebuilds only when the parse changes, which is why this example reports "built": false for an unchanged job item.
Command
Output
Next Steps
Scripting and Automation
Pipe find results, batch crops, and run the CLI from agents and pipelines.
CLI Reference
Every flag these commands take, with their payload keys.