Feel free to reach techsupport@surepass.io for any technical support or guidance.
Header | Required | Description |
---|---|---|
Authorization | Yes | Bearer token for API authentication (JWT) |
Content-Type | Yes | Must be set to application/json |
Parameter | Type | Required | Description |
---|---|---|---|
state | string | Yes | State code for the e-stamp certificate (e.g., "uttar_pradesh") |
certificate_number | string | Yes | Unique e-stamp certificate number (e.g., "IN-UP29253039519629T") |
estamp_duty_type | string | Yes | E-stamp duty type code (e.g., "UP-RG-7") |
certificate_issue_date | string | Yes | Certificate issue date in YYYY-MM-DD format |
{
"state": "uttar_pradesh",
"certificate_number": "IN-UP29253039519629T",
"estamp_duty_type": "UP-RG-7",
"certificate_issue_date": "2021-02-01"
}
Parameter | Type | Description |
---|---|---|
data | object | Container for all e-stamp certificate details |
data.client_id | string | Unique client identifier for the verification request |
data.certificate_number | string | E-stamp certificate number that was verified |
data.state | string | State where the e-stamp was issued |
data.estamp_duty_type | string | Type of e-stamp duty |
data.certificate_issue_date | string | Date when the certificate was issued |
data.account_reference | string | Government account reference for the transaction |
data.reference_id | string | Unique reference ID for the e-stamp transaction |
data.purchased_by | string | Name of the person who purchased the e-stamp |
data.description_of_document | string | Description of the document type and purpose |
data.property_description | string | Detailed description of the property involved |
data.consideration_price | string | Consideration amount for the transaction |
data.first_party | string | Name of the first party in the transaction |
data.second_party | string | Name of the second party in the transaction |
data.stamp_duty_paid_by | string | Name of the person who paid the stamp duty |
data.stamp_duty_account | string | Amount of stamp duty paid with written format |
status_code | integer | HTTP status code (200 for success) |
success | boolean | Indicates if the verification was successful |
message | string/null | Additional message or error description |
message_code | string | Status message code |
{
"data": {
"client_id": "estamp_verification_rfSseKCpeHpzefHrgVlx",
"certificate_number": "IN-UP29253039519629T",
"state": "uttar_pradesh",
"estamp_duty_type": "UP-RG-7",
"certificate_issue_date": "2021-02-01",
"account_reference": "NEWIMPACC (SV)/ up14262604/ JANSATH/ UP-MJF",
"reference_id": "SUBIN-UPUP1426260450149193474138T",
"purchased_by": "JEENAT WO SHAHAJAD",
"description_of_document": "Article 23 Conveyance",
"property_description": "PLOT SITUATED AT VILL VALIPURA MUJHERA PARGANA B.S TEHSIL JANSATH DIST MZN",
"consideration_price": "",
"first_party": "SHAFIQ SO KALU",
"second_party": "JEENAT WO SHAHAJAD",
"stamp_duty_paid_by": "JEENAT WO SHAHAJAD",
"stamp_duty_account": "15,500\n (FifteenThousand Five Hundred only)"
},
"status_code": 200,
"success": true,
"message": null,
"message_code": "success"
}
{
"data": null,
"status_code": 404,
"success": false,
"message": "Certificate not found or invalid certificate details",
"message_code": "certificate_not_found"
}
curl --location --request POST 'https://kyc-api.surepass.app/api/v1/estamp/verification' \
--header 'Content-Type: application/json' \
--data-raw '{
"state": "uttar_pradesh",
"certificate_number": "IN-UP29253039519629T",
"estamp_duty_type": "UP-RG-7",
"certificate_issue_date": "2021-02-01"
}'
{
"data": {
"client_id": "estamp_verification_rfSseKCpeHpzefHrgVlx",
"certificate_number": "IN-UP29253039519629T",
"state": "uttar_pradesh",
"estamp_duty_type": "UP-RG-7",
"certificate_issue_date": "2021-02-01",
"account_reference": "NEWIMPACC (SV)/ up14262604/ JANSATH/ UP-MJF",
"reference_id": "SUBIN-UPUP1426260450149193474138T",
"purchased_by": "JEENAT WO SHAHAJAD",
"description_of_document": "Article 23 Conveyance",
"property_description": "PLOT SITUATED AT VILL VALIPURA MUJHERA PARGANA B.S TEHSIL JANSATH DIST MZN",
"consideration_price": "",
"first_party": "SHAFIQ SO KALU",
"second_party": "JEENAT WO SHAHAJAD",
"stamp_duty_paid_by": "JEENAT WO SHAHAJAD",
"stamp_duty_account": "15,500\n (FifteenThousand Five Hundred only)"
},
"status_code": 200,
"success": true,
"message": null,
"message_code": "success"
}