API Documentation

Overview

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.

Base URL

https://infocheckertool.dynamicearner.org

All API requests should be made to this base URL.

Endpoints

1. Phone Number Information

GET/numberinfo

Retrieve detailed information about a phone number including operator, circle, and location details.

num string required
10-digit Indian phone number
Example Request:
GET https://infocheckertool.dynamicearner.org/numberinfo?num=9876543210
Example Response: 200 OK
{
  "number": "9876543210",
  "operator": "Airtel",
  "circle": "Delhi",
  "type": "Mobile",
  "status": "Active"
}
Error Response: 400 Bad Request
{
  "error": "Missing num parameter"
}

2. Aadhaar/Ration Card Information

GET/ration_info or /adharrationinfo

Fetch ration card details using Aadhaar number.

id string required
12-digit Aadhaar number
Example Request:
GET https://infocheckertool.dynamicearner.org/ration_info?id=123456789012
Example Response: 200 OK
{
  "aadhaar": "123456789012",
  "name": "John Doe",
  "ration_card": "XXXXXXXXXX",
  "address": "Sample Address",
  "status": "Active"
}

3. Vehicle Registration Information

GET/vehicle_info

Get vehicle registration details including owner information and vehicle specifications.

id string required
Vehicle registration number (e.g., DL01AB1234)
Example Request:
GET https://infocheckertool.dynamicearner.org/vehicle_info?id=DL01AB1234
Example Response: 200 OK
{
  "registration_number": "DL01AB1234",
  "owner": "John Doe",
  "vehicle_class": "Motor Car",
  "fuel_type": "Petrol",
  "manufacturer": "Maruti Suzuki",
  "model": "Swift",
  "registration_date": "2020-01-15"
}

Response Codes

Rate Limiting

Currently, there are no rate limits. However, please use the API responsibly to avoid being blocked.

CORS Support

All API endpoints support Cross-Origin Resource Sharing (CORS) with Access-Control-Allow-Origin: * header.