Sign Up for a Free Docutain Test SDK

for your apps

Just fill out the form and receive your license key.
Try out the Docutain SDK in your own apps and explore the functionalities of document scanning, barcode scanning & data extraction!

Docutain SDK client Star Finanz-Software Entwicklung und Vertriebs GmbH with product sfirm
Docutain SDK client Star Finanz-Software Entwicklung und Vertriebs GmbH, Hamburg
Docutain SDK client Star Finanz-Software Entwicklung und Vertriebs GmbH with product STARMONEY
Docutain SDK client Informacijske rešitve, AISS, d.o.o., Slovenia
Docutain SDK client Mediteo GmbH, Heidelberg
Docutain SDK client LIV Systems GmbH, Darmstadt
Docutain SDK client Baker Hughes INTEQ GmbH, Celle
Docutain SDK client Porter Technologies DMCC, Dubai
Docutain SDK client Henara GmbH, Potsdam
Docutain SDK client New ProImage Ltd., Israel

Receive your Trial License


Please select the License Type


Please enter your App Identifier

DESIGNED FOR DEVELOPERS

Powerful scan & data extraction APIs

Use our ready-made solutions so your teams don't waste months implementing complex functionality to enable document scanning and data extraction.

DocutainSDK for Android
Kotlin
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import de.docutain.sdk.ui.ScanResult

val documentScanResult = registerForActivityResult(ScanResult()) { result ->
    if(result){
        //user finished scan process, continue with your workflow
        //generate PDF by using Document.writePDF()
        //get detected Text by using DocumentDataReader.getText()
        //get data by using DocumentDataReader.analyze()
    } else{
        //user canceled scan process
    }
}

...

myButton.setOnClickListener {
    val scanConfig = DocumentScannerConfiguration()
    documentScanResult.launch(scanConfig)
}