NetConnect API
Result Checker

List Result Checker Packages

Return active result-checker packages with live stock counts.

Endpoint

GET /api/v1/result-checker/packages

Response

Returns an array of active result-checker packages:

{
  "success": true,
  "data": [
    {
      "_id": "rcpkg_001",
      "code": "RC001",
      "name": "Basic Package",
      "displayName": "Result Checker - Basic",
      "description": "Standard result checker credentials",
      "price": 5.00,
      "currency": "GHS",
      "stockAvailable": 450,
      "priority": 1,
      "checkLimit": 3,
      "includesPdf": true
    }
  ]
}

Response fields

FieldTypeNotes
_idstringPackage identifier
codestringInternal package code
namestringPackage name
displayNamestringUI display name
descriptionstring | nullPackage description
pricenumberGHS price per credential (role-aware)
currencystringGHS
stockAvailablenumberAvailable credentials in stock
prioritynumber | nullDisplay sort order
checkLimitnumber | nullMaximum checks allowed per credential
includesPdfboolean | nullWhether PDF is included

Sample request

curl -X GET "https://api.netconnectgh.online/api/v1/result-checker/packages" \
  -H "X-API-KEY: netconnect_live_your_secret_here" \
  -H "Content-Type: application/json"

On this page