Plustiveplustive
Sign inGet API key

Bill-payment API

JAMB PIN API

Vend JAMB result-checker e-PINs via API in Nigeria. No verification step — the PIN is returned in the response. Idempotent and prepaid.

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.
FAQ

JAMB PIN API — FAQ

How do I sell JAMB result-checker PINs via API?

POST to /api/v1/education with "productId": "jamb-result-checker" and a unique clientReference. Plustive debits your prepaid wallet and returns the e-PIN in the token field. No verification step is required — JAMB PINs are a direct purchase with no account to look up beforehand.

Can I resell JAMB PINs at scale during UTME season?

Yes. The Plustive education endpoint is designed for burst demand. Each call is idempotent on clientReference, so high-concurrency retry patterns are safe. Your spend is capped by your prepaid wallet balance, which you top up at any time via bank transfer to your dedicated NUBAN.

Is there any difference between how I call the WAEC and JAMB endpoints?

The only difference is the productId field: "waec-result-checker" for WAEC and "jamb-result-checker" for JAMB. The endpoint, authentication, wallet, response shape, and idempotency behaviour are identical across all education PIN products.

Related: