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 API authentication. Format: Bearer YOUR_JWT_TOKEN |
| Content-Type | Yes | Must be set to application/json |
| Parameter | Type | Required | Description |
|---|---|---|---|
| state_name | string | Yes | The name of the state where the dental practitioner is registered. Use lowercase format with underscores (e.g., "maharashtra", "andhra_pradesh"). Refer to the state list API for supported states |
| id_number | string | Yes | The unique registration number assigned to the dental practitioner by the respective State Dental Council (e.g., "A-101", "MH/12345") |
{
"state_name": "maharashtra",
"id_number": "A-101"
}| Parameter | Type | Description |
|---|---|---|
| data | object | Contains the complete verification results and metadata |
| data.client_id | string | Unique identifier for this verification request, useful for tracking and auditing purposes |
| data.id_number | string | The registration number that was verified |
| data.state_name | string | The state name used for verification |
| data.results | object | Contains all verified information about the dental practitioner |
| data.results.name | string | Full name of the dental practitioner as registered with the dental council |
| data.results.registration_date | string | Date when the practitioner was first registered (format: YYYY-MM-DD) |
| data.results.father_name | string | Father's name of the practitioner (may be null if not available) |
| data.results.mother_name | string | Mother's name of the practitioner (may be null if not available) |
| data.results.gender | string | Gender of the practitioner (e.g., "Male", "Female") |
| data.results.dob | string | Date of birth of the practitioner (format: YYYY-MM-DD) |
| data.results.qualification | array | Array of qualification objects containing educational details |
| data.results.qualification[].degree | string | Degree earned (e.g., "B.D.S.", "M.D.S.", "L.D.S.C.") |
| data.results.qualification[].specialization | string | Specialization field if applicable (e.g., "Orthodontics", "Oral Surgery") |
| data.results.qualification[].college | string | Name of the dental college where the degree was obtained |
| data.results.qualification[].university | string | University that awarded the degree |
| data.results.qualification[].year_of_passing | string | Year when the degree was completed |
| data.results.qualification[].registration_date | string | Date when this particular qualification was registered |
| data.results.address_in_parts | object | Structured address information broken into components |
| data.results.address_in_parts.address_line_1 | string | Primary address line (building/house name) |
| data.results.address_in_parts.address_line_2 | string | Secondary address line (locality/area) |
| data.results.address_in_parts.address_line_3 | string | Additional address information |
| data.results.address_in_parts.address_line_4 | string | Additional address information |
| data.results.address_in_parts.address_code | string | Internal address code (may be "0" if not applicable) |
| data.results.address_in_parts.city | string | City or district name |
| data.results.address_in_parts.postal_code | string | PIN code/postal code |
| data.results.address_in_parts.state | string | State name in title case format |
| data.results.address_in_parts.country | string | Country name (typically "India") |
| data.results.address_in_parts.landmark | string | Nearby landmark for address reference |
| data.results.address_in_parts.additional_info_1 | string | Additional address information field |
| data.results.address_in_parts.additional_info_2 | string | Additional address information field |
| data.results.address | string | Full address as a single string (may be null if address_in_parts is populated) |
| data.results.valid_upto | string | Registration validity date if applicable (may be null for lifetime registrations) |
| status_code | integer | HTTP status code (200 for successful verification) |
| success | boolean | Indicates whether the API call was successful (true/false) |
| message | string | Human-readable message describing the result |
| message_code | string | Machine-readable code for the result status |
{
"data": {
"client_id": "bds_mds_doctor_verification_AmpRAFnAvdGXvlIjpyry",
"id_number": "A-101",
"state_name": "maharashtra",
"results": {
"name": "Rustam Dinshawji Umrigar",
"registration_date": "1800-01-01",
"father_name": null,
"mother_name": null,
"gender": "Male",
"dob": "1949-11-25",
"qualification": [
{
"degree": "B.D.S.",
"specialization": "",
"college": "Bharati Vidyapeeth Dental College And Hospital",
"university": "Bharati Vidyapeeth (Deemed University)",
"year_of_passing": "2020",
"registration_date": "2020-02-29"
},
{
"degree": "L.D.S.C.",
"specialization": "",
"college": "",
"university": "",
"year_of_passing": "1943",
"registration_date": "1800-01-01"
}
],
"address_in_parts": {
"address_line_1": "KISMAT 3RD FLOOR, OPP SASSOOM DOEKS",
"address_line_2": "COLABA",
"address_line_3": "",
"address_line_4": "",
"address_code": "0",
"city": "Mumbai Suburban",
"postal_code": "400005",
"state": "Maharashtra",
"country": "India",
"landmark": "",
"additional_info_1": "",
"additional_info_2": ""
},
"address": null,
"valid_upto": null
}
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}{
"status_code": 401,
"success": false,
"message": "Invalid authentication token",
"message_code": "unauthorized"
}curl --location --request POST 'https://kyc-api.surepass.app/api/v1/doctor/bds-mds/verification' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"state_name": "maharashtra",
"id_number": "A-101"
}'{
"data": {
"client_id": "bds_mds_doctor_verification_AmpRAFnAvdGXvlIjpyry",
"id_number": "A-101",
"state_name": "maharashtra",
"results": {
"name": "Rustam Dinshawji Umrigar",
"registration_date": "1800-01-01",
"father_name": null,
"mother_name": null,
"gender": "Male",
"dob": "1949-11-25",
"qualification": [
{
"degree": "B.D.S.",
"specialization": "",
"college": "Bharati Vidyapeeth Dental College And Hospital",
"university": "Bharati Vidyapeeth (Deemed University)",
"year_of_passing": "2020",
"registration_date": "2020-02-29"
},
{
"degree": "L.D.S.C.",
"specialization": "",
"college": "",
"university": "",
"year_of_passing": "1943",
"registration_date": "1800-01-01"
}
],
"address_in_parts": {
"address_line_1": "KISMAT 3RD FLOOR, OPP SASSOOM DOEKS",
"address_line_2": "COLABA",
"address_line_3": "",
"address_line_4": "",
"address_code": "0",
"city": "Mumbai Suburban",
"postal_code": "400005",
"state": "Maharashtra",
"country": "India",
"landmark": "",
"additional_info_1": "",
"additional_info_2": ""
},
"address": null,
"valid_upto": null
}
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}