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 or 13-digit CNIC (e.g., 03338570120 or 1234567890123).

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 and CNIC lookups:

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

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 -X GET "https://shadowdatabase.site/api.php?token=your_api_token&num=03338570120"
                        
PHP
                        
Python
import requests

token = "your_api_token"
number = "03338570120"
url = "https://shadowdatabase.site/api.php?token=" + token + "&num=" + number
response = requests.get(url, verify=False)
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, {
    method: 'GET',
    headers: { 'Accept': 'application/json' }
})
.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": "John Doe",
            "Mobile": "+923912345678",
            "Country": "Example Country",
            "CNIC": "1234567890123",
            "Address": "123 Example Street, Sample City"
        }
    ],
    "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 or 13-digit CNIC (e.g., 03338570120 or 1234567890123). 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.