Select Document
Tap to browse or drag PDF file
JSON RESPONSE
...
TOKEN BALANCE
...
COST PER HIT
...
TOTAL USED
...
ACCOUNT STATUS
...
USERNAME
...
EXPIRY DATE
...
YOUR MASTER KEY
...
curl -X POST https://www.server.apidigitaldokan.store/SIGNTOSV.php \ -F "master_key=YOUR_MASTER_KEY" \ -F "pdf=@document.pdf"
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => 'https://www.server.apidigitaldokan.store/SIGNTOSV.php',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_POST => true,
CURLOPT_POSTFIELDS => [
'master_key' => 'YOUR_MASTER_KEY',
'pdf' => new CURLFile('/path/to/document.pdf')
]
]);
$response = curl_exec($curl);
curl_close($curl);
echo $response;