Skip to content

Shopee Checker API: Bulk Phone Number Verification

Check whether Indonesian phone numbers are registered on Shopee Indonesia (shopee.co.id) and return a yes/no registration result. Only Indonesian mobile numbers (+62 8xx) are supported. Simplify list cleaning and initial screening. The task uses the standard asynchronous batch workflow.

Input format

Upload a text file with one phone number per line. Only Indonesian mobile numbers (+62 8xx) are supported; numbers from other countries are rejected when the task is created. Normalize values before upload; E.164 format is recommended.

+6281234567890
+6285712345678

Create a task

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

Terminal window
curl --location 'https://api.numberchecker.ai/v1/tasks' \
--header 'X-API-Key: YOUR_API_KEY' \
--form 'file=@"./input.txt"' \
--form 'task_type="shopee"'

The API returns a task ID. Keep this ID and use it to poll the task status.

Upload response

{
"task_id": "d4g8o46p2jvh04o9uolg",
"status": "pending",
"total": 5000,
"estimated_amount": {
"amount": "2.500000",
"currency": "USD"
},
"message": "Task created successfully"
}

Check task status

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

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

Poll until status becomes exported. Do not treat pending or processing as a completed result.

Processing response

{
"task_id": "d4g8o46p2jvh04o9uolg",
"status": "processing",
"total": 5000,
"success": 2500,
"failure": 0
}

Exported response

{
"task_id": "d4g8o46p2jvh04o9uolg",
"status": "exported",
"total": 5000,
"success": 5000,
"failure": 0,
"result_url": "https://example-link-to-results.zip",
"actual_amount": {
"amount": "2.500000",
"currency": "USD"
}
}

Result Fields

FieldDescriptionExample
numberInput phone number from the submitted file.+6281234567890
activatedWhether the input was detected as active or registered.yes

Result file handling

Download the file from result_url only after the task is exported. Preserve the returned column names when processing the file downstream.

Response fields

FieldDescription
created_atTimestamp when the task was created.
updated_atTimestamp of the latest task status update.
task_idUnique task identifier.
statuspending, processing, exported, or failed.
totalTotal input values processed.
successValues processed successfully.
failureValues that failed processing.
result_urlDownload URL when the task is exported.
actual_amountFinal settled amount, when available.
estimated_amountEstimated amount returned when the task is created.

Status codes

StatusDescription
200Request successful.
202Task created successfully and estimated charge applied.
400Invalid file, unsupported task type, or too few valid entries.
401Missing or invalid API key.
402Insufficient account balance.
403Product not available for your account (discontinued or whitelist-only); contact support.
404Task not found.
413Uploaded file is too large.
500Internal server error; retry later.
503Product temporarily unavailable (paused for maintenance); nothing is charged, retry later.

Operational notes

  • The task is asynchronous; use the task ID for status polling.
  • Check product-specific input limits before uploading.
  • Only Indonesian mobile numbers (+62 8xx) are accepted; numbers from other countries are rejected when the task is created. A non-Indonesian or malformed number that still reaches detection is returned as no.
  • Failed rows are reported in the exported result and reflected in the task counters.
  • The fields above are based on the current live sample and may change when the upstream export schema changes.