Get and List Contacts
Fetch a contact's details or a list of saved contacts with pagination and optional filters like name or contact type.
API URL: https://api.bulkpe.in/client/listContact
Method: POST
Auth: Please refer to the Authorization page.
{
"page": 1,
"limit": 20,
//below all parameters are optional, can be used for better querying.
"contact_id": "",
"reference": "",
"type": "account_number", //account_number or vpa
"bank_account_number": "",
"vpa": ""
}
Response
{
"status": true,
"statusCode": 200,
"data": [
{
"contact_id": "BENEF30787",
"reference": "sathya1751539067",
"type": "account_number",
"name": "TestSathya",
"email": "",
"phone": "",
"bank_account_number": "232423232323",
"bank_name": "",
"bank_ifsc_code": "HDFC0000600",
"vpa": "",
"createdAt": "2025-07-03T10:37:47.332Z"
},
{
"contact_id": "BENEF30786",
"reference": "sathya1751539027",
"type": "account_number",
"name": "TestSathya",
"email": "",
"phone": "",
"bank_account_number": "232423232323",
"bank_name": "",
"bank_ifsc_code": "HDFC0000600",
"vpa": "",
"createdAt": "2025-07-03T10:37:07.442Z"
}
],
"message": "",
"total": 2
}