Shadow Database API

Getting Started

1. Register/Login: Create an account or log in at Shadow Database.

2. Get API Token: After logging in, find your lifetime API token below or on the API page.

3. Free Coins: Join our Telegram bot at t.me/ShadowInnovationsBot to earn free coins for lookups.

4. Test the API: Use the form below to test lookups with a 10-12 digit mobile number (e.g., 03338570120).

5. Integrate: Use the API endpoint with your token to integrate into your application.

Download Sample Code

Download sample integration code: Download Sample Code (Replace with your actual link).

API Documentation

Use this endpoint for SIM lookups:

GET https://shadowdatabase.site/api.php?token={your_api_token}&num={mobile_number}

Each lookup costs 5 coins. Log in to get your lifetime API token.

Get free coins via our Telegram bot: https://t.me/shadowsim_coin_bot.

Example Requests

cURL
curl "https://shadowdatabase.site/api.php?token=your_api_token&num=03338570120"
                        
PHP
//?php
$token = "your_api_token";
$number = "03338570120";
$url = "https://shadowdatabase.site/api.php?token=" . urlencode($token) . "&num=" . urlencode($number);
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, true);
$response = curl_exec($ch);
curl_close($ch);
$data = json_decode($response, true);
print_r($data);
?>
                        
Python
import requests

token = "your_api_token"
number = "03338570120"
url = "https://shadowdatabase.site/api.php?token=" + token + "&num=" + number
response = requests.get(url, verify=True)
data = response.json()
print(data)
                        
JavaScript (Fetch)
const token = "your_api_token";
const number = "03338570120";
const url = "https://shadowdatabase.site/api.php?token=" + encodeURIComponent(token) + "&num=" + encodeURIComponent(number);
fetch(url)
    .then(response => response.json())
    .then(data => console.log(data))
    .catch(error => console.error('Error:', error));
                        

Example Response

{
    "status": "success",
    "message": "Data retrieved successfully",
    "data": [
        {
            "Name": "HAFEEZ ALLAH",
            "Mobile": "+923338570120",
            "Country": "Pakistan",
            "CNIC": "3240214025071",
            "Address": "STREET   MOHALA DHANDLA DAJAL"
        },
        {
            "Name": "HAFEEZ ALLAH",
            "Mobile": "+923321756120",
            "Country": "Pakistan",
            "CNIC": "3240214025071",
            "Address": "DHANDLA DAJAL JAM PUR DAJAL RA"
        },
        {
            "Name": "HAFEEZ ALLAH",
            "Mobile": "+923338570120",
            "Country": "Pakistan",
            "CNIC": "3240214025071",
            "Address": "STREET   MOHALA DHANDLA DAJAL"
        }
    ],
    "developed_by": "Shadow Innovations"
}
                

Tutorial: A to Z Guide

Step 1: Register/Login

Create an account or log in at Shadow Database to access your API token.

Step 2: Get Free Coins

Join our Telegram bot at https://t.me/shadowsim_coin_bot to earn free coins. Follow the bot's instructions to claim coins for lookups.

Step 3: Obtain API Token

After logging in, copy your lifetime API token from the section above. This token is unique and works across all devices and locations.

Step 4: Test the API

Use the form above to test the API with a 10-12 digit mobile number (e.g., 03338570120). Each lookup costs 5 coins.

Step 5: Integrate into Your Project

Use the provided code examples (cURL, PHP, Python, JavaScript) to integrate the API into your application. Download the sample code: Download Sample Code.

Step 6: Check History

Your lookup history is saved and can be viewed on the History page.

Step 7: Earn More Coins

Refer friends via the Referrals page or use the Telegram bot to earn additional coins.

Support

For help, join our WhatsApp Channel or Telegram bot.

Log in to access the API.