Accounting Document Converter

Easily digitize your accounting documents.Read more
Choose a discounted package
Quantity discounts
10 000 Credits / ks 
Description Accounting Document Converter

The accounting document converter is a service that converts the required accounting document (invoice, credit note, etc.).) from PDF, JPEG, or PNG format to JSON format.

For developers
We have prepared some simple examples of connecting to the DataSqueezer API in common programming languages.
cURL
Python
PHP

curl -H "Content-Type: application/json" https://datasqueezer.com/nexus/createTask -d '{ "token": "__API_TOKEN__", "service": "invoiceminer", "data": "__INVOICE_DATA__" ,"serviceParams": { "isdoc": "__ISDOC__", "defaultCurrency": "__DEFAULT_CURRENCY__" }}'

 

TITLE DESCRIPTION REQUIRED PARAMETER
__INVOICE_DATA__

Invoice file data in base64

yes
__ISDOC__

Convert document to ISDOC format

no
__DEFAULT_CURRENCY__

Default currency

ne

import requests
import json

endpoint = 'https://datasqueezer.com/nexus/createTask'

data = {
'token': '__API_TOKEN__',
'service': 'invoiceminer',
'data': '__INVOICE_DATA__',
'serviceParams':
{
'isdoc':'__ISDOC__',
'defaultCurrency':'__DEFAULT__CURRENCY__'
}
}

response = requests.post(endpoint, data=json.dumps(data))

 

TITLE DESCRIPTION REQUIRED PARAMETER
__INVOICE_DATA__

Invoice file data in base64

yes
__ISDOC__

Convert document to ISDOC format

no
__DEFAULT_CURRENCY__

Default currency

ne

$curlHandle=curl_init("https://datasqueezer.com/nexus/createTask");

$data=[
'token'=>'__API_TOKEN__',
'service'=>'invoiceminer',
'data'=>'__INVOICE_DATA__',
'serviceParams'=>[
'isdoc'=>'__ISDOC__',
'defaultCurrency'=>'__DEFAULT__CURRENCY__']
];

curl_setopt($curlHandle, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($curlHandle, CURLOPT_POSTFIELDS, json_encode($data));
curl_setopt($curlHandle, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curlHandle, CURLOPT_FOLLOWLOCATION, true);

$response=curl_exec($curlHandle);
$error_msg=curl_error($curlHandle);
curl_close($curlHandle);

 

TITLE DESCRIPTION REQUIRED PARAMETER
__INVOICE_DATA__

Invoice file data in base64

yes
__ISDOC__

Convert document to ISDOC format

no
__DEFAULT_CURRENCY__

Default currency

ne
chat
Or write to us at
Login
Don't have an account yet?Sign up.
Tracking product
Please fill in all conditions which has to be reached and an email address where you want to get a notification
Credits
The use of DataSqueezer services is tied to a user account, which needs to be set up in advance. Do you wish to create a registration or sign in?
Sign Up