Select Document
Tap to browse or drag PDF file
JSON RESPONSE
...
TOKEN BALANCE
...
COST PER HIT
...
TOTAL USED
...
ACCOUNT STATUS
...
USERNAME
...
EXPIRY DATE
...
curl -X POST https://sv.sabiha.top/SIGNTOSV.php \ -F "master_key=YOUR_MASTER_KEY" \ -F "pdf=@document.pdf"
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => 'https://sv.sabiha.top/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;