API Manager

SIMAH Individual Score

Fetch Report

Enter a National ID to retrieve the mock credit report.

Available Test IDs
NID Exp. Score Action
1012345678 720
1023456789 750
1034567890 640
1045678901 580
API Integration
/* --------------------------------------
   ENDPOINT: SIMAH Individual Report
   URL: POST /api/score/individual
   Headers: Content-Type: application/json
-------------------------------------- */

// 1. cURL Request
curl -X POST http://localhost:5006/api/score/individual \
  -H "Content-Type: application/json" \
  -d '{ "nid": "1012345678" }'

// 2. Success Response Structure
{
  "record": {
    "isSuccess": true,
    "data": [
      {
        "reportDetails": { ... },
        "providedDemographicsInfo": { 
            "demCustomerName": "Ahmed Ali" 
        },
        "score": [
          {
            "score": 720,
            "riskLevel": "Low"
          }
        ]
      }
    ]
  }
}
Recent API Activity: SIMAH Individual
ID Method Endpoint Status Timestamp Action
Loading logs...