API Pemeriksa Threads: Verifikasi Nomor Telepon Massal
Periksa apakah nomor telepon di file Anda memiliki akun Threads. 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="threads"'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, "estimated_amount": { "amount": "0.500000", "currency": "USD" }, "message": "Task created successfully", "created_at": "2026-04-28T11:58:08.916446594Z"}Respons status pemrosesan:
{ "created_at": "2026-04-28T08:27:09.933Z", "updated_at": "2026-04-28T08:27:10.241Z", "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-04-28T08:27:09.933Z", "updated_at": "2026-04-28T08:27:10.241Z", "task_id": "d4g24nep2jvh04o9uoh0", "user_id": "wfi7wGPS4B4PdtTMox5Y", "status": "exported", "total": 2049, "success": 2049, "failure": 0, "result_url": "https://example-link-to-results.zip", "actual_amount": { "amount": "2.000000", "currency": "USD" }}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) |
task_type | string, atur ke threads |
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 |
|---|---|
Number | Nomor telepon dalam format E.164 |
threads | Apakah nomor terdaftar di Threads (yes / no style; label sesuai export) |
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 · failed (dikembalikan otomatis) |
total | Total nomor telepon diproses |
success | Nomor berhasil diidentifikasi |
failure | Nomor yang gagal diproses |
result_url | URL download saat status adalah exported |
actual_amount | (Opsional) Jumlah yang benar-benar ditagih, tersedia setelah task diselesaikan |
estimated_amount | (Respons pembuatan) Perkiraan biaya task; tagihan final diselesaikan saat task selesai |
Kode status
| Status | Deskripsi |
|---|---|
200 | free, Permintaan berhasil (mis. cek status) |
202 | charge, Task berhasil dibuat; perkiraan biaya dipotong |
400 | free, Permintaan tidak valid: parameter atau format file salah, jenis task tidak didukung, atau entri valid kurang dari batch minimum |
401 | free, API key tidak ada atau tidak valid |
402 | free, Saldo tidak mencukupi |
404 | free, Task tidak ditemukan |
413 | free, File yang diunggah terlalu besar |
500 | free, Kesalahan server internal, coba lagi nanti |