Convert scanned documents and photos to searchable, editable text.
Paper documents and scanned images are unsearchable and can't be edited. Manual transcription is slow and error-prone.
Use OCR to automatically extract text from document images, making them searchable and editable.
const res = await fetch("https://api.apiverve.com/v1/imagetotext", { method: "POST", headers: { "x-api-key": "YOUR_API_KEY" } });
const { data } = await res.json();
console.log(data);