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.checknumber.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.checknumber.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.checknumber.ai/v1/tasks
Parameter permintaan upload file
| Parameter | Deskripsi |
|---|---|
file | file, satu nomor telepon per baris (format E.164, mis. +79991234567) |
task_type | string, atur ke max |
Ukuran batch minimum: 1000 nomor per task.
URL permintaan cek status task
POST https://api.checknumber.ai/v1/gettasks
Parameter permintaan cek status task
| Parameter | Deskripsi |
|---|---|
task_id | string, ID task yang dikembalikan saat membuat task |
Kolom hasil
| Kolom | Deskripsi | Contoh |
|---|---|---|
Number | Nomor telepon dalam format E.164 | +79991234567 |
max | Apakah nomor terdaftar di messenger MAX | yes, no |
Format respons
| Field | Deskripsi |
|---|---|
created_at | Timestamp saat task dibuat |
updated_at | Timestamp update status task terakhir |
task_id | Pengenal task unik |
user_id | ID pengguna |
status | pending · processing · exported |
total | Total nomor telepon diproses |
success | Nomor berhasil diidentifikasi |
failure | Nomor yang gagal diproses |
result_url | URL download saat status adalah exported |
Kode status
| Status | Deskripsi |
|---|---|
200 | charge, request berhasil |
400 | free, bad request |
500 | free, server error |