⚡ Xhine iFreeCheck API

iPhone IMEI & Serial Number Check Service

🟢 API Online

🔌 Base URL

https://api.90s-xtx.website

API Version: 1.0 | PHP Backend

📋 Authentication

You need a valid API key to use this service. Contact the admin to get your key.

All requests require the key parameter with your API key.

📡 Endpoints

POST/check
Check IMEI/Serial number status

Parameters:

ParameterRequiredDescription
keyYour API key
imeiIMEI (15 digits) or Serial Number
serviceService ID (see Services)

Example with cURL:

curl -X POST https://api.90s-xtx.website/check \
  -d 'key=YOUR_API_KEY' \
  -d 'imei=123456789012345' \
  -d 'service=4'

Example with PHP:

<?php
$data = [
    'key' => 'YOUR_API_KEY',
    'imei' => '123456789012345',
    'service' => '4'
];

$ch = curl_init('https://api.90s-xtx.website/check');
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$result = curl_exec($ch);
curl_close($ch);

$response = json_decode($result);
print_r($response);
?>

Success Response:

{
    "success": true,
    "service": "4",
    "imei": "1234****2345",
    "data": {
        "imei": "123456789012345",
        "fmi": "OFF",
        "model": "iPhone 15 Pro Max",
        ...
    },
    "usage": {
        "remaining": 95
    }
}

Error Response:

{
    "success": false,
    "error": "Invalid API key"
}

🔍 Service ID Reference

IDService NamePrice
4FMI On/Off Status 🔒$0.01
55Blacklist Status 🚨$0.01
60iCloud Clean/Lost Status 📵$0.02
81Model + Color + Storage$0.01
120All-in-one (Basic Info)$0.06
125FMI On/Off + Blacklist$0.01
131Activation Check$0.01
140Warranty Check 🔧$0.01
165Purchase Country Check$0.03
205iFreeCheck Mini$0.03
241SIM-Lock Status$0.015
242iFreeCheck Pro$0.08
281iFreeCheck Ultimate$0.35
301FMI On/Off + MDM Status$0.40

Prices shown are ifreeicloud's cost. Contact admin for your pricing.

View all services →

Quick Examples

1. Check iCloud FMI Status (Service 4):

curl -X POST https://api.90s-xtx.website/check \
  -d 'key=YOUR_KEY' \
  -d 'imei=123456789012345' \
  -d 'service=4'

2. iCloud Clean/Lost Status (Service 60):

curl -X POST https://api.90s-xtx.website/check \
  -d 'key=YOUR_KEY' \
  -d 'imei=123456789012345' \
  -d 'service=60'

3. All-in-one Basic Info (Service 120):

curl -X POST https://api.90s-xtx.website/check \
  -d 'key=YOUR_KEY' \
  -d 'imei=123456789012345' \
  -d 'service=120'
🔐 Admin Dashboard