Unlock the potential of data within documents with our AI-driven Table Extraction solution. Using state-of-the-art artificial intelligence models, our system effortlessly identifies and extracts tables from a wide range of documents, be it reports, invoices, or research papers.
This innovative technology not only saves you valuable time and effort but also ensures unparalleled accuracy in data extraction. Whether you're in finance, research, or any industry reliant on structured information, our Smart Table Extraction solution empowers you to harness data effectively, improving decision-making, and productivity while reducing manual data entry errors.
Limitations
Max File Size is 10 MB
Max requests per second: 1
Processing Time: Up to the number of characters in an image
//note that running this code directly from the local file system might not work due to security restrictions.<inputtype="file"id="fileInput"><buttonid="uploadButton">Upload</button><script>document.getElementById('uploadButton').addEventListener('click', () => {consturl='https://use.laigo.io/api/FileUpload/v1/Upload/smartTableExtraction';consttoken='Bearer my-email-here';constemail='my-email-here';constoutputFormats='CSV';constlanguageHint='EN';constfileInput=document.getElementById('fileInput');constfile=fileInput.files[0];constformData=newFormData();formData.append('email', email);formData.append('outputFormats', outputFormats);formData.append('languageHint', languageHint);formData.append('file', file);constxhr=newXMLHttpRequest();xhr.open('POST', url);xhr.setRequestHeader('Authorization', token);xhr.onload= () => {if (xhr.status ===200) {console.log(xhr.responseText); } else {console.error('Request failed:',xhr.statusText); } };xhr.onerror= () => {console.error('Request failed'); };xhr.send(formData); });</script>
First you need to have a document sample that you want to use with smartTableExtraction. It can be any document type such as: invoice, receipt, letter, email etc.
Inorder to use our smartTableExtractiontool you need to have an API key which can be generated from here.
If you don’t have an account, first you need to set up your account then you can generate the API key. Create an account here.
After you have generated your API key, then you can use smartTableExtractionany popular programming language, where you can find the code snippets here.
Run your code. You will receive a JSON ID as response.