iPhone IMEI & Serial Number Check Service
https://api.90s-xtx.website
API Version: 1.0 | PHP Backend
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.
Parameters:
| Parameter | Required | Description |
|---|---|---|
| key | ✅ | Your API key |
| imei | ✅ | IMEI (15 digits) or Serial Number |
| service | ✅ | Service 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"
}
| ID | Service Name | Price |
|---|---|---|
| 4 | FMI On/Off Status 🔒 | $0.01 |
| 55 | Blacklist Status 🚨 | $0.01 |
| 60 | iCloud Clean/Lost Status 📵 | $0.02 |
| 81 | Model + Color + Storage | $0.01 |
| 120 | All-in-one (Basic Info) | $0.06 |
| 125 | FMI On/Off + Blacklist | $0.01 |
| 131 | Activation Check | $0.01 |
| 140 | Warranty Check 🔧 | $0.01 |
| 165 | Purchase Country Check | $0.03 |
| 205 | iFreeCheck Mini | $0.03 |
| 241 | SIM-Lock Status | $0.015 |
| 242 | iFreeCheck Pro | $0.08 |
| 281 | iFreeCheck Ultimate | $0.35 |
| 301 | FMI On/Off + MDM Status | $0.40 |
Prices shown are ifreeicloud's cost. Contact admin for your pricing.
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'