Bulk ValidationsResult

Check Bulk Verification Results

Check the status and download results of a bulk verification batch. Track progress and retrieve verified records when ready.

curl -X GET "https://production.deepvue.tech/v1/verification/batch-processing-status?request_id=example_string" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_TOKEN (JWT)" \
  -H "x-api-key: YOUR_API_KEY"
{
  "transaction_id": "51cd8b6ab36d46a98afb2f01e856e89a",
  "timestamp": 1732088933797,
  "code": 200,
  "message": "Batch Upload status fetched successfully",
  "sub_code": "SUCCESS",
  "data": {
    "request_id": "06d0d7c340ed460d96103aaa0b26f0de",
    "status": 200,
    "product_id": "",
    "message": "batch processing completed",
    "batch_output_file_url": "https://bulk-data-processing.s3.ap-south-1.amazonaws.com/upi-basic-batch-output-files/06d0d7c340ed460d96103aaa0b26f0de.csv"
  }
}
GET
/v1/verification/batch-processing-status
GET
Bearer Token (JWT)
Bearer Tokenstring
Required

ACCESS_TOKEN generated from the authorize endpoint. Should be included in the header as Bearer .

ACCESS_TOKEN generated from the authorize endpoint. Should be included in the header as Bearer .
API Key (header: x-api-key)
x-api-keystring
Required

The CLIENT_SECRET provided to you. This header parameter is required for authentication purposes.

The CLIENT_SECRET provided to you. This header parameter is required for authentication purposes.
Request Preview
Response

Response will appear here after sending the request

Authentication

header
Authorizationstring
Required

Bearer token (JWT). ACCESS_TOKEN generated from the authorize endpoint. Should be included in the header as Bearer .

header
x-api-keystring
Required

API Key for authentication. The CLIENT_SECRET provided to you. This header parameter is required for authentication purposes.

Query Parameters

Responses

codeinteger
timestampinteger
transaction_idstring
sub_codestring
messagestring
dataobject

Overview

This API retrieves the processing status of bulk validation requests. You provide the request_id obtained when you submitted the batch, and the endpoint returns the current status and results.

  • Completed batches include a downloadable results file URL in the response.
  • In-progress batches indicate processing is ongoing with a null output file URL.

Use the request_id returned from any bulk verification submission endpoint to check the status of that batch.