The current status of the list uploaded using the bulk email validation API.

You can get the current status of the uploaded list. The list must be uploaded via the API endpoint. Once the validation is completed, you will get a link to download validation results as a .csv file.

Sample response while the list is processing:

HTTP/1.1 200 OK

{
   "debounce":{
      "list_id":"20664",
      "status":"processing",
      "percentage":"39",
      "download_link":""
   },
   "success":"1"
}

Sample response once validation is finished:

HTTP/1.1 200 OK

{
   "debounce":{
      "list_id":"20664",
      "status":"completed",
      "percentage":"100",
      "download_link":"https://cdn.debounce.io/get/report/20664-5efwsdbsccsd.csv"
   },
   "success":"1"
}

If there is an error with your request, you will get a JSON output like this:

HTTP/1.1 200 OK

{
   "debounce":{
      "error":"List ID is not valid."
   },
   "success":"0"
}
Language
Authorization
Query
Click Try It! to start a request and see the response here!