Deliver JAMB result-checker PINs through one API call. Demand concentrates around the UTME result release window, and Plustive handles the fulfillment so your platform only needs to POST and display the token.
JAMB PINs follow the same no-verify pattern as WAEC: one POST to /api/v1/education with the appropriate productId, and the e-PIN comes back in the token field. No customer account is needed, and the wallet debit and PIN issuance happen in a single round trip.
Every purchase is prepaid from a wallet you fund by bank transfer to a dedicated account (NUBAN) that credits automatically. There are no card charges per transaction and your spend is capped by your funded balance. Idempotency on clientReference means retries are safe at any volume.
The API call
One authenticated POST /api/v1/education request, idempotent on your clientReference, with all money in integer kobo:
curl -X POST https://api.plustiveimpact.com/api/v1/education \
-H "Authorization: Bearer pk_live_xxx" \
-H "Content-Type: application/json" \
-d '{ "productId": "jamb-result-checker", "clientReference": "edu_7781" }'
→ { "status": "Success", "token": "WRN-XXXX-XXXX-XXXX" }What you get
- JAMB PIN e-PINs vended on demand — the token is returned in the response.
- No verification step required — one call from purchase to PIN.
- Idempotent on clientReference; prepaid from one wallet with auto-refund on failure.
- High-volume safe: idempotent calls mean a retry after any network hiccup returns the same PIN, not a duplicate charge.