Sell WAEC result-checker PINs on demand through the Plustive education API. Demand peaks sharply in the weeks after WAEC publishes results, and a single API call delivers each PIN without any account verification step.
WAEC PINs are a straightforward vend: POST to /api/v1/education with the productId and a clientReference, and the 16-character e-PIN comes back in the token field. There is no smartcard to verify and no customer account to look up — just purchase and return the token.
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": "waec-result-checker", "clientReference": "edu_7781" }'
→ { "status": "Success", "token": "WRN-XXXX-XXXX-XXXX" }What you get
- WAEC Result Checker 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.
- Ideal for schools, fintech wallets, and cybercafé management platforms during WAEC result season.