Verify Candidate number
Verify an educational examination pin.
Endpoint
URL: /api/verify-edu
Methods: POST
Description
This API endpoint allows users to verify jamb candidate number.
Authentication
To access this endpoint, users must include their API key and secret key in the request headers.
Request Headers
- api-key (string, required): The API key of the user.
- secret-key (string, required): The secret key of the user.
Request Body (POST)
- number (string, required): The registration number of the candidate.
- firstLevel (string, required): The name of the exam.
Usage Example
POST request to verify exam number:
Content-Type: application/json
api-key: your-api-key
secret-key: your-secret-key
{
"number": "0000000000",
"firstLevel": "JAMB", // value of this key can either be firstLevel or fId, e.g. "jamb" fId is more accurate
}
Response:
{
"message": {
"Customer_Name": "IAB CODES LTD",
}
}Failed Response Format
{
"error": "Please check the number and try again"
}