Select PDF File
Tap to browse or drag file
SERVER RESPONSE
...
BALANCE
...
LIMIT
...
USED
...
STATUS
...
USER
...
EXPIRY
...
curl -X POST https://sm.sabiha.top/SMART-NID.php \ -F "key=YOUR_API_KEY" \ -F "pdf=@file.pdf"
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => 'https://sm.sabiha.top/SMART-NID.php',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_POST => true,
CURLOPT_POSTFIELDS => [
'key' => 'YOUR_API_KEY',
'pdf' => new CURLFile('/path/to/file.pdf')
]
]);
$response = curl_exec($curl);
curl_close($curl);
echo $response;