Feel free to reach techsupport@surepass.io for any technical support or guidance.
Authorization
header as Bearer TOKEN
.https://sandbox.surepass.io
https://kyc-api.surepass.io
Header | Required | Description |
---|---|---|
Authorization | Yes | Bearer token authentication using JWT |
Content-Type | Yes | application/json |
Parameter | Type | Required | Description |
---|---|---|---|
district | String | Yes | Name of the district where the land is located |
taluka | String | Yes | Name of the taluka or sub-district |
village | String | Yes | Name of the village where the land is located |
block | String | Yes | Block number or identifier of the land |
owner_name | String | Yes | Name of the landowner to verify |
{
"district": "sabarkantha",
"taluka": "prantij",
"village": "kamalpur",
"block": "14",
"owner_name": "SHANUBHAI"
}
Parameter | Type | Description |
---|---|---|
data | Object | Container for all response data |
data.client_id | String | Unique identifier for the API request |
data.district | String | Name of the district as provided in the request |
data.taluka | String | Name of the taluka as provided in the request |
data.village | String | Name of the village as provided in the request |
data.block_code | String | Block code as provided in the request |
data.input_owner_name | String | Name of the owner as provided in the request |
data.land_details | Array of Objects | List of land records that potentially match the owner name |
data.land_details[].khata_number | String | Number assigned to the land parcel in official records |
data.land_details[].owner_name | String | Name of the owner in English as per records |
data.land_details[].owner_name_gujarati | String | Name of the owner in Gujarati as per records |
data.land_details[].name_match_score | Integer | Score indicating how closely the record matches the input name (0-100) |
data.total_summary | Object | Summary of land details |
data.total_summary.total_area | String | Total area of the land in the format "acre-guntha-square meter" |
data.total_summary.assessment_amount | String | Assessment amount for the land in rupees |
status_code | Integer | HTTP status code indicating the result of the request |
success | Boolean | Indicates whether the API call was successful |
message | String | Human-readable message describing the result |
message_code | String | Machine-readable code describing the result |
{
"data": {
"client_id": "gujarat_land_verification_nxhrtWyiyXtazErKXAvU",
"district": "sabarkantha",
"taluka": "prantij",
"village": "kamalpur",
"block_code": "14",
"input_owner_name": "shanubhai",
"land_details": [
{
"khata_number": "111",
"owner_name": "Patel Jagdishbhai Keshbhai",
"owner_name_gujarati": "પટેલ જગદીશભાઈ કેશાભાઈ",
"name_match_score": 42
},
{
"khata_number": "111",
"owner_name": "Patel Keeratbhai Keshbhai",
"owner_name_gujarati": "પટેલ કીરીટભાઈ કેશાભાઈ",
"name_match_score": 44
},
{
"khata_number": "111",
"owner_name": "Patel Sureshbhai Keshbhai",
"owner_name_gujarati": "પટેલ સુરેશભાઈ કેશાભાઈ",
"name_match_score": 50
},
{
"khata_number": "111",
"owner_name": "Patel Bharatiben Keshbhai",
"owner_name_gujarati": "પટેલ ભારતીબેન કેશાભાઈ",
"name_match_score": 44
}
],
"total_summary": {
"total_area": "1-32-28",
"assessment_amount": "5.40"
}
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}
{
"status_code": 400,
"success": false,
"message": "Invalid parameters provided",
"message_code": "invalid_parameters"
}
curl --location --request POST 'https://kyc-api.surepass.app/api/v1/land-verification/gujarat' \
--header 'Content-Type: application/json' \
--data-raw '{
"district": "sabarkantha",
"taluka": "prantij",
"village": "kamalpur",
"block": "14",
"owner_name": "SHANUBHAI"
}'
{
"data": {
"client_id": "gujarat_land_verification_nxhrtWyiyXtazErKXAvU",
"district": "sabarkantha",
"taluka": "prantij",
"village": "kamalpur",
"block_code": "14",
"input_owner_name": "shanubhai",
"land_details": [
{
"khata_number": "111",
"owner_name": "Patel Jagdishbhai Keshbhai",
"owner_name_gujarati": "પટેલ જગદીશભાઈ કેશાભાઈ",
"name_match_score": 42
},
{
"khata_number": "111",
"owner_name": "Patel Keeratbhai Keshbhai",
"owner_name_gujarati": "પટેલ કીરીટભાઈ કેશાભાઈ",
"name_match_score": 44
},
{
"khata_number": "111",
"owner_name": "Patel Sureshbhai Keshbhai",
"owner_name_gujarati": "પટેલ સુરેશભાઈ કેશાભાઈ",
"name_match_score": 50
},
{
"khata_number": "111",
"owner_name": "Patel Bharatiben Keshbhai",
"owner_name_gujarati": "પટેલ ભારતીબેન કેશાભાઈ",
"name_match_score": 44
}
],
"total_summary": {
"total_area": "1-32-28",
"assessment_amount": "5.40"
}
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}