Export Kindle vocabulary to Anki
The Kindle vocabulary builder quietly collects every word you look up, but it lives in a locked SQLite database with HTML-laced usage contexts no flashcard app can read.
Drop your file here — or click to choose
vocab.db export JSON (words + lookups) · up to 20MB each · processing starts instantly, preview is free
No signup needed. Only pay if you want the clean file.
Frequently asked questions
怎么从 vocab.db 得到 JSON?
用 sqlite 工具把 words 与 lookups 两表导出为 JSON(如 sqlite3 vocab.db ".mode json" ".output vocab.json" "select * from words;" "select * from lookups;"),再把两表合成一个 {words: [...], lookups: [...]} JSON 上传。