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., Slowenien 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 Docutain SDK client VYRTY Corporation DBA Sync.MD, USA Docutain SDK client tSpoonLab, s.l., Spain Docutain SDK client LoadMiles, USA Docutain SDK client KKH Kaufmaennische Krankenkasse, Hannover Docutain SDK client Uniconta S/A, Denmark Docutain SDK client SIMA S.r.l, Italy Docutain SDK client Diasbytes, Belgium
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., Slowenien 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 Docutain SDK client VYRTY Corporation DBA Sync.MD, USA Docutain SDK client tSpoonLab, s.l., Spain Docutain SDK client LoadMiles, USA Docutain SDK client KKH Kaufmaennische Krankenkasse, Hannover Docutain SDK client Uniconta S/A, Denmark Docutain SDK client SIMA S.r.l, Italy Docutain SDK client Diasbytes, Belgium

Receive your Trial License


Please select the License Type

Please enter your App Identifier Android: "application ID", iOS: "bundle 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)
}