PLEASE LOG IN
SETEL ULANG KATA SANDI LUPA KATA SANDI?
DAFTAR MASIH BELUM PUNYA AKUN? JANGAN TUNGGU

Dokumentasi API IMEI.info

Alat Pencarian API

Peringatan: Permintaan API dibatasi kecepatannya, jangan mengirim lebih dari 4 permintaan sekaligus dan simpan di bawah 20 PERMINTAAN per menit . Alamat IP yang melebihi batas permintaan mungkin diblokir secara otomatis .

Akses API sekarang hanya tersedia dalam versi BERBAYAR - harga untuk BASIC API tercantum di bawah

1. Untuk mendapatkan info tentang telepon, silakan kirim permintaan POST ke:

 https://www.imei.info/api/checkimei/

2. dalam data POST yang menentukan parameter:

    API Key: in paid version
    imei: enter IMEI number

Contoh formulir untuk mendapatkan info tentang ponsel di browser menggunakan kunci API:

<form action="https://www.imei.info/api/checkimei" method="POST">
API Key: <input type="text" name="key" />
Imei: <input type="text" name="imei" />
<button type="submit">Check!</button>
</form>

KERITING

curl -X POST https://www.imei.info/api/checkimei/ -H 'cache-control: no-cache'  -H 'content-type: multipart/form-data; boundary=----WebKitFormBoundary7MA4YWxkTrZu0gW' -F imei={imei-to-check-here} -F key={your-api-key-here}

NODE.JS

var request = require("request");

 

var options = { method: 'POST',
  url: 'https://www.imei.info/api/checkimei/',
  headers:
   { 'cache-control': 'no-cache',
     'content-type': 'multipart/form-data; boundary=----WebKitFormBoundary7MA4YWxkTrZu0gW' },
  formData:
   { imei: 'imei-to-check-here',
     key: 'your-api-key-here' } };

 

request(options, function (error, response, body) {
  if (error) throw new Error(error);

 

  console.log(body);
});

Contoh hasil BASIC menggunakan API - harga api dasar yang tercantum di bawah

    {
      "imei":"01341000008XXXX", 
      "brand": "APPLE", 
      "model": "iPhone 5"
    } 

Contoh hasil LENGKAP menggunakan API - hubungi kami untuk harga jika Anda memerlukan lebih banyak parameter daripada info dasar di atas

    {
      "imei": "35XXXXXXXXXXXXX",
      "imei_parts": {
        "fac": "XX",
        "cd": "X",
        "snr": "XXXXXX",
        "tac": "35XXXX"
      },
      "brand": "NOKIA",
      "info": {
        "weight": 130.0,
        "battery": [
          "Li-Ion",
          850
        ],
        "qwerty": false,
        "year": [
          "2002",
          "09"
        ],
        "talk_time_umts": 0.0,
        "stand_by": 200.0,
        "touch_scr": false,
        "size": {
          "width": 57.0,
          "thickness": 26.0,
          "height": 130.0
        },
        "wifi_hotspot": false,
        "cpu_clock": 104.0,
        "other_band": [],
        "build": "Classic",
        "tel_func": false,
        "lan": false,
        "talk_time": 4.0,
        "int_memory": "4",
        "gsm_band": [
          "900",
          "1800",
          "1900"
        ],
        "memory_card": [
          "MMC",
          0
        ],
        "umts_band": [],
        "hsdpa_band": [],
        "display": {
          "color": [
            true,
            "4K"
          ],
          "type": "LCD",
          "size": {
            "width": 176,
            "inches": 2.1,
            "height": 208
          }
        },
        "lan_ports": null,
        "os": "Symbian 6.1",
        "cpu": "ARM9"
      },
      "model": "3650"
    }

3. Dukungan kesalahan

Setiap kesalahan dikembalikan dalam format JSON

Sebagai contoh:

    {'error': 'Incorrect username/password'}
    {'error': 'Account blocked'}
    {'error': 'Missing username/password'}
    {'error': 'Exceeded the limit'}
    {'error': 'IMEI: 35XXXXXXXXXXXXX not found'}
    {'error': 'IMEI cannot be empty'}

    {"errors": "API key invalid or disabled"}       // HTTP STATUS: 403
    {"errors": "API key not activated or expired"}  // HTTP STATUS: 403
    {"errors": "Hourly limit exceeded"}             // HTTP STATUS: 429
    {"errors": "Daily limit exceeded"}              // HTTP STATUS: 429

4. Pemeriksaan status Kunci API:

https://www.imei.info/api/status?key={YOUR_API_KEY}

Hasil sampel:


{"Has access": true, "Activation date": "2018-10-29", "Expiration date": "2018-12-30", "Checks left (hour)": "No limit", "Checks left (day)": "No limit", "Checks left (month)": 4996}

Daftar harga info dasar (info dasar: merek | model):

  • 2500 / cek: $ 50 - $ 0,02 / imei
  • 10.000 / cek: $ 100 - $ 0,01 / imei
  • 100000 / cek: $ 500 - $ 0,005 / imei

Order Api Key untuk Basic Api:

Beli 50 USD BASIC API KEY Beli 100 USD BASIC API KEY Beli 500 USD BASIC API KEY


2nd API (API V4) untuk layanan pengecekan (semua merek) tersedia:

API V4 BARU untuk semua merek!
Kami juga menawarkan V4 API untuk semua layanan pemeriksaan yang tersedia di situs web kami.
Untuk mempelajari lebih lanjut dan membeli Api Key silahkan klik link di bawah ini:
Dokumentasi API V4