Skip to content

Latest commit

 

History

5 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Spotify Email Checker API — Bulk Verification | NumberChecker

The Spotify Email Checker API accepts a text file of email addresses, creates an asynchronous bulk task, and exports a result file. This repository contains a runnable integration in seven languages.

Note

This repository covers the standalone product code spotify_email only. Other product codes are outside its scope.

Product facts

API fact Value
Product code spotify_email
Input Text file, one email per line
Processing mode Asynchronous bulk task
Minimum batch 1,000 identifiers
Maximum batch 10,000,000 identifiers
Export fields email, activated

Workflow

  1. Submit the input file to POST /v1/tasks with task_type=spotify_email.
  2. Poll POST /v1/gettasks with the returned task_id.
  3. When status=exported, download result_url.
export NUMBERCHECKER_API_KEY="YOUR_API_KEY"
curl -X POST 'https://api.numberchecker.ai/v1/tasks' \
  -H "X-API-Key: $NUMBERCHECKER_API_KEY" \
  -F 'file=@examples/emails.txt' \
  -F 'task_type=spotify_email'

Task states are pending, processing, exported, and failed. Download the result only after export and preserve the returned column names exactly. GET /v1/balance reads the current account balance.

Input and output

Provide one email address per line using the address format expected by your workflow. The exported fields are: email, activated.

Errors and safe integration

Typical responses include 400 invalid input, 401 invalid API key, 402 insufficient balance, 404 unknown task, 413 oversized upload, and 500 temporary server error. Retry transient 500 responses with capped backoff; correct the input or credentials before retrying other errors. Read keys from NUMBERCHECKER_API_KEY and never expose them in browser code or source control. Process only identifiers you are authorized to verify.

Runnable examples

Complete submit → poll → download clients are available in the server-side examples:

Run the server-side examples from the repository root using the exact commands listed in each language README; each command passes examples/emails.txt. All server-side examples read NUMBERCHECKER_API_KEY from the environment and fail fast if it is missing.

FAQ

Is this a realtime single-identifier API?

No. It is an asynchronous bulk API for uploaded lists.

Which product does this repository support?

Only spotify_email. The task type is intentionally fixed to that product code.

Where can I find current pricing?

See the NumberChecker pricing page. This repository does not hard-code a price.

Official resources

NumberChecker is not affiliated with the third-party service named by this product family. Use this API only for authorized processing and comply with applicable privacy laws and platform terms.

Last reviewed: 2026-08-18 · Maintained by NumberChecker.

About

Asynchronous bulk Spotify verification API for NumberChecker.

Topics

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors