InfoLeak provides RESTful API endpoints to retrieve information from public leaked databases. All endpoints return JSON responses and support CORS.
⚠️ This API uses publicly available data. We are not responsible for any illegal use of this information.
https://infocheckertool.dynamicearner.org
All API requests should be made to this base URL.
/numberinfoRetrieve detailed information about a phone number including operator, circle, and location details.
GET https://infocheckertool.dynamicearner.org/numberinfo?num=9876543210
{
"number": "9876543210",
"operator": "Airtel",
"circle": "Delhi",
"type": "Mobile",
"status": "Active"
}
{
"error": "Missing num parameter"
}
/ration_info or /adharrationinfoFetch ration card details using Aadhaar number.
GET https://infocheckertool.dynamicearner.org/ration_info?id=123456789012
{
"aadhaar": "123456789012",
"name": "John Doe",
"ration_card": "XXXXXXXXXX",
"address": "Sample Address",
"status": "Active"
}
/vehicle_infoGet vehicle registration details including owner information and vehicle specifications.
GET https://infocheckertool.dynamicearner.org/vehicle_info?id=DL01AB1234
{
"registration_number": "DL01AB1234",
"owner": "John Doe",
"vehicle_class": "Motor Car",
"fuel_type": "Petrol",
"manufacturer": "Maruti Suzuki",
"model": "Swift",
"registration_date": "2020-01-15"
}
200 OK - Request successful, data returned400 Bad Request - Missing or invalid parameters403 Forbidden - Access denied (e.g., banned number)500 Internal Server Error - Server or upstream API errorCurrently, there are no rate limits. However, please use the API responsibly to avoid being blocked.
All API endpoints support Cross-Origin Resource Sharing (CORS) with Access-Control-Allow-Origin: * header.