This documentation provides details for using the SimTrack API to search mobile number or CNIC details.
The SimTrack API requires an api_key
parameter for authentication. The API key is not shown here for security reasons.
Click Here To Get API Key, API Key Is Free
Endpoint: https://simtrack.site/developers
Parameter | Description |
---|---|
search |
The Mobile Number Or CNIC TO Sarch. |
api_key |
Your API key for authentication. Replace with your actual API key when using the API. |
GET https://simtrack.site/developers/?search=03325503189&api_key=your_actual_api_key
{ "status": "success", "results": [ { "Mobile": "03325502315", "Name": "John Doe", "CNIC": "1234567890123", "Address": "123 Main Street, Anytown", "Operator": "Example Telecom" }, { "Mobile": "03325503189", "Name": "Jane Smith", "CNIC": "9876543210987", "Address": "456 Elm Street, Othertown", "Operator": "Another Telecom" }, // More results... ] }
<?php
$api_url = 'https://simtrack.site/developers';
$query = '03325503189';
$api_key = 'your_actual_api_key';
$response = file_get_contents("$api_url?search=$query&api_key=$api_key");
$data = json_decode($response, true);
if ($data && $data['status'] === 'success') {
$results = $data['results'];
foreach ($results as $result) {
echo 'Mobile: ' . $result['Mobile'] . '<br>';
echo 'Name: ' . $result['Name'] . '<br>';
echo 'CNIC: ' . $result['CNIC'] . '<br>';
echo 'Address: ' . $result['Address'] . '<br>';
echo 'Operator: ' . $result['Operator'] . '<br><br>';
}
} else {
echo 'Error: ' . $data['message'];
}
?>