Feel free to reach techsupport@surepass.io for any technical support or guidance.
Authorization header as Bearer TOKEN.https://sandbox.surepass.iohttps://kyc-api.surepass.io| Header | Required | Description |
|---|---|---|
| Authorization | Yes | Bearer token for authentication (JWT) |
| Content-Type | Yes | application/json |
| Parameter | Type | Required | Description |
|---|---|---|---|
| registration_number | String | Yes | RERA registration number to verify |
| registration_type | String Enum | Yes | Type of registration (project or agent) |
| state_name | String Enum | Yes | State where the project/agent is registered |
project - For real estate projectsagent - For real estate agents/brokersuttar_pradeshkeralaassamwest_bengalmadhya_pradeshbiharchhattisgarhdelhikarnatakauttarakhandmaharashtraharyanatelangana{
"registration_number": "UPREPRJ0000",
"registration_type": "project",
"state_name": "uttar_pradesh"
}| Parameter | Type | Description |
|---|---|---|
| data | Object | Contains the verification results |
| data.client_id | String | Unique identifier for this verification request |
| data.registration_number | String | RERA registration number that was verified |
| data.registration_type | String | Type of registration that was verified |
| data.state_name | String | State name for which verification was performed |
| data.details | Array | Array containing detailed information about the project/agent |
| status_code | Integer | HTTP status code of the response |
| success | Boolean | Indicates if the request was successful |
| message | String | Response message |
| message_code | String | Code representing the response message |
| Property | Type | Description |
|---|---|---|
| agent_name | String | Name of the RERA registered agent |
| promoter_name | String | Name of the project promoter |
| certificate_number | String | RERA certificate number |
| project_name | String | Name of the RERA registered project |
| certificate_url | String | URL to download the RERA certificate PDF |
| project_address | String | Address of the project |
| project_id | String | RERA project identifier |
| project_district | String | District where the project is located |
| registered_with | String | Authority with which the project is registered |
| approved_date | String | Date of project approval (YYYY-MM-DD) |
| expiry_date | String | Expiration date of registration (YYYY-MM-DD) |
| district | String | District name |
| category | String | Project category |
| certificate_issuing_date | String | Date when certificate was issued (YYYY-MM-DD) |
| completion_date | String | Expected project completion date (YYYY-MM-DD) |
| registration_date | String | Date of RERA registration (YYYY-MM-DD) |
| agent_id | String | RERA agent identifier |
| proprietor_name | String | Name of the project proprietor |
| contact_number | String | Contact number for the agent/project |
| agent_email | String | Email address of the agent |
| address | String | Address of the agent/project |
| status | String | Current status of the project |
| application_number | String | Application number for the agent/project |
| last_modified | String | Last modification date (YYYY-MM-DD) |
| authorised_name | String | Name of the authorized person |
| tehsil | String | Tehsil of the agent/project |
| extended_expiry_date | String | Extended expiry date if applicable (YYYY-MM-DD) |
| application_date | String | Date of application (YYYY-MM-DD) |
| promoter_email | String | Email address of the promoter |
| promoter_number | String | Contact number of the promoter |
{
"data": {
"client_id": "rera_v2_uAMxmuawqHaWqVwOKNfe",
"registration_number": "UPPRJ000",
"registration_type": "project",
"state_name": "uttar_pradesh",
"details": [
{
"agent_name": null,
"promoter_name": null,
"certificate_number": null,
"project_name": "MIRZAPUR PHASE I",
"certificate_url": "https://aadhaar-kyc-docs.s3.amazonaws.com/up_rera/UPRE0000/project/rera_v2_uAMxmuawqHaWqVwOKNfe/certificate-2023-09-13-061352798274.pdf?",
"project_address": "Tehshil- Nagar",
"project_id": null,
"project_district": null,
"registered_with": null,
"approved_date": null,
"expiry_date": null,
"district": null,
"category": null,
"certificate_issuing_date": null,
"completion_date": null,
"registration_date": null,
"agent_id": null,
"proprietor_name": null,
"contact_number": null,
"agent_email": null,
"address": null,
"status": null,
"application_number": null,
"last_modified": null,
"authorised_name": null,
"tehsil": null,
"extended_expiry_date": null,
"application_date": null,
"promoter_email": null,
"promoter_number": null
}
]
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}{
"status_code": 400,
"success": false,
"message": "Invalid RERA registration number",
"message_code": "invalid_registration_number"
}curl --location --request POST 'https://kyc-api.surepass.app/api/v1/rera/rera-v2' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"registration_number": "UPREPRJ0000",
"registration_type": "project",
"state_name": "uttar_pradesh"
}'{
"data": {
"client_id": "rera_v2_uAMxmuawqHaWqVwOKNfe",
"registration_number": "UPPRJ000",
"registration_type": "project",
"state_name": "uttar_pradesh",
"details": [
{
"agent_name": null,
"promoter_name": null,
"certificate_number": null,
"project_name": "MIRZAPUR PHASE I",
"certificate_url": "https://aadhaar-kyc-docs.s3.amazonaws.com/up_rera/UPRE0000/project/rera_v2_uAMxmuawqHaWqVwOKNfe/certificate-2023-09-13-061352798274.pdf?",
"project_address": "Tehshil- Nagar",
"project_id": null,
"project_district": null,
"registered_with": null,
"approved_date": null,
"expiry_date": null,
"district": null,
"category": null,
"certificate_issuing_date": null,
"completion_date": null,
"registration_date": null,
"agent_id": null,
"proprietor_name": null,
"contact_number": null,
"agent_email": null,
"address": null,
"status": null,
"application_number": null,
"last_modified": null,
"authorised_name": null,
"tehsil": null,
"extended_expiry_date": null,
"application_date": null,
"promoter_email": null,
"promoter_number": null
}
]
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}