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 (administrative division) |
hobli | String | Yes | Name of the hobli (cluster of villages) |
village | String | Yes | Name of the village where the land is located |
khata_no | String | Yes | Khata number for the land record |
{
"district": "belgaum",
"taluka": "chikkodi",
"hobli": "chikkodi",
"village": "chikkodi",
"khata_no": "1"
}
Parameter | Type | Description |
---|---|---|
data | Object | Container for all response data |
data.client_id | String | Unique identifier for the verification 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.hobli | String | Name of the hobli as provided in the request |
data.village | String | Name of the village as provided in the request |
data.khata_no | String | Khata number as provided in the request |
data.land_details | Array | List of land parcels and their details |
data.total_summary | Object | Aggregated summary of all land values |
status_code | Integer | HTTP status code of the response |
success | Boolean | Indicates if the request was successful |
message | String | Human-readable status message |
message_code | String | Machine-readable status code |
Parameter | Type | Description |
---|---|---|
order_number | String | Sequential order number of the land record |
hissa_number | String | Unique subdivision identifier for the land parcel |
owner_name | String | Name of the registered landowner |
area | String | Total land area in the format of acres.guntas.sq.ft |
shape | String | Shape value assessment of the land |
local_call | String | Local call area assessment value |
health_care | String | Healthcare contribution assessment value |
vidya_kara | String | Education (Vidya Kara) contribution assessment value |
total | String | Sum of all assessment values for this land parcel |
Parameter | Type | Description |
---|---|---|
total_area | String | Combined area of all land parcels |
total_shape | String | Combined shape value of all land parcels |
total_local_call | String | Combined local call area value of all land parcels |
total_health_care | String | Combined healthcare contribution value of all land parcels |
total_vidya_kara | String | Combined education contribution value of all land parcels |
grand_total | String | Sum of all assessment values across all land parcels |
{
"data": {
"client_id": "karnataka_land_verification_nHcQyIyyWhtOwPfbSwbI",
"district": "belgaum",
"taluka": "chikkodi",
"hobli": "chikkodi",
"village": "chikkodi",
"khata_no": "1",
"land_details": [
{
"order_number": "1",
"hissa_number": "33/*/2 ಎ",
"owner_name": "ಅಲಾಸೆ ಪ್ರಕಾಶ ಶಾಂತಿನಾಥ",
"area": "0.15.00.00",
"shape": "0.23",
"local_call": "0.12",
"health_care": "0.03",
"vidya_kara": "0.02",
"total": "0.4"
}
],
"total_summary": {
"total_area": "0.15.00.00",
"total_shape": "0.23",
"total_local_call": "0.12",
"total_health_care": "0.03",
"total_vidya_kara": "0.02",
"grand_total": "0.4"
}
},
"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/karnataka' \
--header 'Content-Type: application/json' \
--data-raw '{
"district": "belgaum",
"taluka": "chikkodi",
"hobli": "chikkodi",
"village": "chikkodi",
"khata_no": "1"
}'
{
"data": {
"client_id": "karnataka_land_verification_nHcQyIyyWhtOwPfbSwbI",
"district": "belgaum",
"taluka": "chikkodi",
"hobli": "chikkodi",
"village": "chikkodi",
"khata_no": "1",
"land_details": [
{
"order_number": "1",
"hissa_number": "33/*/2 ಎ",
"owner_name": "ಅಲಾಸೆ ಪ್ರಕಾಶ ಶಾಂತಿನಾಥ",
"area": "0.15.00.00",
"shape": "0.23",
"local_call": "0.12",
"health_care": "0.03",
"vidya_kara": "0.02",
"total": "0.4"
}
],
"total_summary": {
"total_area": "0.15.00.00",
"total_shape": "0.23",
"total_local_call": "0.12",
"total_health_care": "0.03",
"total_vidya_kara": "0.02",
"grand_total": "0.4"
}
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}