Table of contents

Fetch Bill

Enter the required details (e.g., Consumer ID, Account Number) to retrieve the due bill amount and other bill-related information.

API URL: https://api.bulkpe.in/client/bbps/FetchBillSingle

Method: POST

Auth: Please refer to the Authorization page.

Note: Get billderId and custParam array values from Select Biller API.

{ "reference": "test09", //should be unique value "billerId": "ICIC00000NATSI", //get from Select Biller API "custParam": [ { "name": "Registered Mobile Number", "value": "9999922222" }, { "name": "Last 4 digits of Credit Card Number", "value": "1007" } ] }
{ "status": true, "statusCode": 200, "data": { "fetchId": "REF00014", //store this value for making payment "reference": "test09", "billerId": "ICIC00000NATSI", "category": "Credit Card", "amount": "99999", "status": "SUCCESS", "billDetails": { "customerName": "Steve Jobs", "amount": "99999", "dueDate": "2024-11-15", "custConvFee": null, "custConvDesc": null, "billDate": "2024-10-28", "billNumber": null, "billPeriod": null, "tag": [] }, "additionalData": { "tag": [ { "name": "Minimum Amount Due", "value": "7810.00" }, { "name": "Current Outstanding Amount", "value": "77798.63" } ] } }, "message": "Bill fetched!" }