Select PDF File
Tap to browse or drag file
SERVER RESPONSE
...
BALANCE
...
LIMIT
...
USED
...
STATUS
...
USER
...
EXPIRY
...
YOUR API KEY
...
curl -X POST https://www.sn.bean-hub.shop/SIGNTONID.php -F "key=API_KEY" -F "pdf=@file.pdf"
$c = curl_init('https://www.sn.bean-hub.shop/SIGNTONID.php');
curl_setopt($c, CURLOPT_POSTFIELDS, [
'key' => 'API_KEY',
'pdf' => new CURLFile('file.pdf')
]);
echo curl_exec($c);