Skip to content

Network Status

When a user clicks on a specific product, query the API in the background using its product code to check if that particular biller/product is experiencing interruptions or intermittent downtime.

Sample Error Message: Interruption! Your top-up might be slow or not go through. We are fixing it!

WARNING

IMPORTANT: Users should still have the ability to checkout and pay even with the interruption error

API Endpoint

http
GET https://api.iimmpact.com/v2/networkstatus

Request Headers

HeaderDescriptionRequired
AuthorizationID TokenNo

Query Parameters

ParameterTypeRequiredDescription
productStringNoProduct Code

Response 200

FieldTypeDescription
dataobject
data.product_codestringProduct Code
data.product_namestringProduct Name
data.product_imgstringProduct Image
data.network_statusstringStatus (Interruption, Healthy)
metadataobject
metadata.status_codenumber
metadata.last_updatedstring

Example Response:

json
{
  "data": {
    "product_code": "TNB",
    "product_name": "Tenaga Nasional Berhad",
    "product_img": "https://dashboard.iimmpact.com/img/TNB.png",
    "network_status": "Interruption"
  },
  "metadata": {
    "status_code": 200,
    "last_updated": "19-05-2025 14:49:03"
  }
}

IIMMPACT API Documentation