Skip to main content

EWS Certificate Verification

An Economically Weaker Section (EWS) Certificate is an official document issued by state governments in India to individuals from the general category whose family income falls below a specified threshold. It enables EWS category applicants to avail reservations in education and government jobs.

EWS Certificate Structure

KeyDescription
EWS NumberUnique number of ews Certificate
NameIndividual Name of the Certificate
Security CodeCertificate Security code(Applicable for kerala state)

API Integration

EWS Certificate verification can be performed directly using the Verify EWS API

API For captcha

Generate captcha and token(If required) using the Generate Captcha Api

Captcha Request

{
"state": "DL"
}

Captcha Response

For Valid state

{
"captcha": "Base 64 Image string",
"token": "XXXXXXXXXXXXXXXX"
}

Request

{
"state": "DL", //State Code
"ewsNumber": "909XXXXXXX70", // EWS certificate Number
"name": "XXXXXXXX", // Name of candidate
"captcha": "7h2joU", // Captcha string get using captcha api(optional)
"token": "XXXXXXXXXXXX" // Token string get using captcha api(optional)
}

Response

If the Ews Certificate is valid

{
"code": 0,
"message": "Success",
"data": {
"applicationNumber": "XXXXXX",
"name": "RXXXX XXXXXA",
"fatherName": "JUXXXL XXXXR SXXXXA",
"motherName": "SXXXN XXXI",
"village": "XXXXXXX",
"mandal": "XXXXXXXXX",
"district": "JXXXXXXXXXX",
"cast": "BXXXXXXX",
"income": "1XXX",
"address": "XXXXX XXXXX XXXx",
"age": "XX",
"gramPanchayat": "XXXXXXXXX",
"pinCode": "XXXXXX",
"aadharId": "XXXXXXX"
}
}

If the Ews Certificate is invalid

{
"code": 0,
"message": "Success",
"data": {
"status": "INVALID",
"message": "Invalid EWS Certificate"
}
}