Public REST API for mobile number intelligence lookup.
https://api.unknowns.app
Replace with your VPS domain or IP where the API is running.
Search a mobile number with deep-link analysis across all connected records.
| Param | Type | Required | Description |
|---|---|---|---|
number |
string | Yes | 10-digit Indian mobile. Auto-cleans +91, 0 prefixes. |
GET /api/lookup?number=9876543210
{
"query": "9876543210",
"found": true,
"total_records": 4,
"total_phones": 3,
"phones": [
"9876543210",
"8817342793",
"7000419892"
],
"names": ["Arun Kumar Patel"],
"father_names": ["Sarita Patel"],
"emails": [],
"addresses": [
"W/O Arun Kumar, Rewa, Madhya Pradesh, 486340",
"Ward no. 7, Korawara, Satna, MP, 485661"
],
"regions": ["AIRTEL MP", "JIO MP"],
"response_time_ms": 156
}
{
"detail": {
"error": "Invalid number",
"message": "Please provide a valid 10-digit Indian mobile number.",
"example": "9876543210"
}
}
Get database statistics and health info.
{
"total_records": 1780000000,
"database_size": "156.2 GB",
"engine": "SQLite WAL",
"cache": "64MB",
"mmap": "2GB"
}
curl "https://api.unknowns.app/api/lookup?number=9876543210"
import requests
resp = requests.get(
"https://api.unknowns.app/api/lookup",
params={"number": "9876543210"}
)
data = resp.json()
print(f"Found: {data['total_records']} records")
for phone in data['phones']:
print(f" ๐ {phone}")
const resp = await fetch(
'https://api.unknowns.app/api/lookup?number=9876543210'
);
const data = await resp.json();
console.log(`Found ${data.total_records} records`);
data.phones.forEach(p => console.log(`๐ ${p}`));
# Clone the repo git clone https://github.com/Unknown-2829/Hitek_db_api-web.git cd Hitek_db_api-web # Install dependencies pip install -r requirements.txt # Set database path export DB_PATH="/data/users.db" # Start the API server python -m api.main
The API runs on port 8000 by default. Configure via environment variables.
| Variable | Default | Description |
|---|---|---|
DB_PATH |
/data/users.db | SQLite database path |
API_HOST |
0.0.0.0 | Bind address |
API_PORT |
8000 | Port number |
CORS_ORIGINS |
* | Comma-separated origins |
DEEP_SEARCH_DEPTH |
3 | Max BFS hops |
MAX_RESULTS |
25 | Max rows per query |
+91 98765 43210 โ 9876543210/docs (Swagger UI)