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
| Field | Type | Notes |
|---|---|---|
_id | string | Package identifier |
code | string | Internal package code |
name | string | Package name |
displayName | string | UI display name |
description | string | null | Package description |
price | number | GHS price per credential (role-aware) |
currency | string | GHS |
stockAvailable | number | Available credentials in stock |
priority | number | null | Display sort order |
checkLimit | number | null | Maximum checks allowed per credential |
includesPdf | boolean | null | Whether 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"
