kilagbe.xyz API Documentation

ড্যাসবোর্ড

১. Request Method & Endpoint

নিচের এন্ডপয়েন্টে GET রিকোয়েস্ট পাঠান:

GET https://kilagbe.xyz/api/sv-copy.php?key=YOUR_API_KEY&nid=1234567890&dob=2000-01-01

২. PHP Integration Code Example

<?php
$apiKey = "YOUR_API_KEY"; // আপনার ড্যাসবোর্ড থেকে প্রাপ্ত Key
$nid = "1234567890";
$dob = "2000-01-01";

$url = "https://kilagbe.xyz/api/sv-copy.php?key=" . $apiKey . "&nid=" . $nid . "&dob=" . $dob;

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
curl_close($ch);

echo $response;
?>