API Pemeriksa Email Crypto.com: Deteksi Registrasi Massal
Periksa apakah email di file Anda yang diunggah terdaftar dengan Crypto.com. Menggunakan task_type crypto_email dan alur polling batch yang sama seperti layanan berbasis email lainnya.
Contoh upload file deteksi:
curl --location 'https://api.checknumber.ai/v1/tasks' \--header 'X-API-Key: API-KEY' \--form 'file=@"./emails.txt"' \--form 'task_type="crypto_email"'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": "2025-11-21T15:58:08.916446594Z"}Respons status pemrosesan:
{ "created_at": "2025-11-21T08:27:09.933Z", "updated_at": "2025-11-21T08: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": "2025-11-21T08:27:09.933Z", "updated_at": "2025-11-21T08: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"}URL permintaan upload file
POST https://api.checknumber.ai/v1/tasks
Parameter permintaan upload file
| Parameter | Deskripsi |
|---|---|
file | file, satu alamat email per baris |
task_type | string, atur ke crypto_email |
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 |
|---|---|
Email | Alamat email |
activated | Apakah email terdaftar di Crypto.com (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 |
total | Total email diproses |
success | Email berhasil diverifikasi |
failure | Baris 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 |