Lewati ke konten

API Pemeriksa MAX: Verifikasi Nomor Telepon Massal

Periksa apakah nomor telepon di file Anda terdaftar di messenger MAX (oneme.ru). Alur tugas batch yang sama seperti checker sosial / messenger lainnya.

Contoh upload file deteksi:

curl --location 'https://api.numberchecker.ai/v1/tasks' \
--header 'X-API-Key: API-KEY' \
--form 'file=@"./numbers.txt"' \
--form 'task_type="max"'

Contoh cek status task:

curl --location 'https://api.numberchecker.ai/v1/gettasks' \
--header 'X-API-Key: API-KEY' \
--form 'task_id="task_id"'

Respons upload file berhasil:

{
"task_id": "d4g8o46p2jvh04o9uolg",
"status": "pending",
"total": 2049,
"message": "Task created successfully",
"created_at": "2026-05-18T11:00:00.000000000Z"
}

Respons status pemrosesan:

{
"created_at": "2026-05-18T11:00:00.000Z",
"updated_at": "2026-05-18T11:01:30.000Z",
"task_id": "d4g24nep2jvh04o9uoh0",
"user_id": "wfi7wGPS4B4PdtTMox5Y",
"status": "processing",
"total": 2049,
"success": 1024,
"failure": 0
}

Respons ketika task selesai (termasuk URL download hasil):

{
"created_at": "2026-05-18T11:00:00.000Z",
"updated_at": "2026-05-18T11:03:00.000Z",
"task_id": "d4g24nep2jvh04o9uoh0",
"user_id": "wfi7wGPS4B4PdtTMox5Y",
"status": "exported",
"total": 2049,
"success": 2049,
"failure": 0,
"result_url": "https://example-link-to-results.zip"
}

URL permintaan upload file

POST https://api.numberchecker.ai/v1/tasks

Parameter permintaan upload file

ParameterDeskripsi
filefile, satu nomor telepon per baris (format E.164, mis. +79991234567)
task_typestring, atur ke max

Ukuran batch minimum: 1000 nomor per task.

URL permintaan cek status task

POST https://api.numberchecker.ai/v1/gettasks

Parameter permintaan cek status task

ParameterDeskripsi
task_idstring, ID task yang dikembalikan saat membuat task

Kolom hasil

KolomDeskripsiContoh
NumberNomor telepon dalam format E.164+79991234567
maxApakah nomor terdaftar di messenger MAXyes, no

Format respons

FieldDeskripsi
created_atTimestamp saat task dibuat
updated_atTimestamp update status task terakhir
task_idPengenal task unik
user_idID pengguna
statuspending · processing · exported
totalTotal nomor telepon diproses
successNomor berhasil diidentifikasi
failureNomor yang gagal diproses
result_urlURL download saat status adalah exported

Kode status

StatusDeskripsi
200charge, request berhasil
400free, bad request
500free, server error