Select PDF File
Tap to browse or drag & drop
SERVER RESPONSE
...
BALANCE
...
LIMIT
...
USED
...
STATUS
...
Usage Analytics
Account Details
Username:...
Expiry Date:...
curl -X POST https://www.sign.apidigitaldokan.store/SIGNTONID.php \ -F "key=YOUR_API_KEY" \ -F "pdf=@document.pdf"
<?php
$ch = curl_init('https://www.sign.apidigitaldokan.store/SIGNTONID.php');
curl_setopt_array($ch, [
CURLOPT_POST => true,
CURLOPT_RETURNTRANSFER => true,
CURLOPT_POSTFIELDS => [
'key' => 'YOUR_API_KEY',
'pdf' => new CURLFile('document.pdf')
]
]);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
?>