Feel free to reach techsupport@surepass.io for any technical support or guidance.
Authorization header as Bearer TOKEN.https://sandbox.surepass.apphttps://kyc-api.surepass.app| Header | Required | Description |
|---|---|---|
| Authorization | Yes | Bearer token for authentication. Format: Bearer <JWT_TOKEN> |
| Content-Type | No | Not required for this GET endpoint, but application/json is recommended. |
| Parameter | Type | Required | Description |
|---|---|---|---|
| — | — | — | No request body parameters are needed for this endpoint. |
{}| Parameter | Type | Description |
|---|---|---|
| data | array of strings | A list of all district names in Uttarakhand, in lowercase format. |
| status_code | integer | HTTP-equivalent status code for the response. 200 indicates success. |
| message_code | string | A machine-readable status indicator. "success" on successful responses. |
| message | string | A human-readable status message. "Success" on successful responses. |
| success | boolean | true if the request was processed successfully; false otherwise. |
{
"data": [
"almora",
"uttarkashi",
"udham singh nagar",
"chamoli",
"champawat",
"tehri garhwal",
"dehradun",
"nainital",
"pithoragarh",
"pauri garhwal",
"bageshwar",
"rudraprayag",
"hardwar"
],
"status_code": 200,
"message_code": "success",
"message": "Success",
"success": true
}{
"data": null,
"status_code": 401,
"message_code": "unauthorized",
"message": "Authentication credentials were not provided or are invalid.",
"success": false
}Authorization header is missing, malformed, or contains an invalid/expired JWT token. Ensure your Bearer token is valid and corresponds to the correct environment (sandbox or production).curl --location --request GET 'https://kyc-api.surepass.app/api/v1/land-verification/uttarakhand/meta/district-list' \
--header 'Authorization: Bearer <token>'{
"data": [
"almora",
"uttarkashi",
"udham singh nagar",
"chamoli",
"champawat",
"tehri garhwal",
"dehradun",
"nainital",
"pithoragarh",
"pauri garhwal",
"bageshwar",
"rudraprayag",
"hardwar"
],
"status_code": 200,
"message_code": "success",
"message": "Success",
"success": true
}