Skip to main content

Get Bulk Searches

This endpoint facilitates retrieval of detailed information regarding multiple search batches processed by the organization. To obtain batch details, send a GET request to the designated endpoint. Specify the organization's search reference parameter to uniquely identify the batches you wish to access. The response provides an array of batch objects containing metadata such as batch ID and name, alongside a status indicator denoting the success of the retrieval operation.

Endpoint: https://api.amlwatcher.com/api/bulk-searches

Method: GET

Sample Request
GET /api/bulk-searches HTTP/1.1
Host: api.amlwatcher.com
Authorization: Bearer Token

Response

ParametersDescription
errorWhenever there is an error in your request, this param will have details of that error; otherwise it’ll remain empty.
statusThe status field is set to either “SUCCESS” or “FAIL”, indicating that the API request resulted in a successful or failure/error condition respectively.
dataAn array containing the actual response elements.
Sample Response
{
"data": [
{
"batch_id": "d8059a6b6bc09fb4cda91fa3",
"batch_name": "Batch 2"
},
{
"batch_id": "007497900b6345b0eef3bd21",
"batch_name": "Batch 1"
}
],
"error": false,
"status": "SUCCESS"
}