Feel free to reach techsupport@surepass.io for any technical support or guidance.
Header | Required | Description |
---|---|---|
Authorization | Yes | JWT Bearer token for authentication (Format: Bearer YOUR_JWT_TOKEN ) |
Content-Type | Yes | Must be set to application/json |
Parameter | Type | Required | Description |
---|---|---|---|
client_id | String | Yes | The unique client identifier received from the initial GSTIN verification request |
otp | String | Yes | The OTP received on the registered mobile number from the GST portal |
json{
"client_id": "gst_otp_tfwewGShXrPxKSmvyrmg",
"otp": "1234"
}
Parameter | Type | Description |
---|---|---|
data | Object | Contains verification status and business details |
data.verified | Boolean | Indicates whether the GSTIN verification was successful |
data.details | Object | Contains comprehensive business information |
data.details.contact_details | Object | Contains principal and additional contact information |
data.details.gstin | String | The verified GSTIN number |
data.details.pan_number | String | PAN number associated with the GSTIN |
data.details.business_name | String | Trade name of the business |
data.details.legal_name | String | Legal name of the entity |
data.details.constitution_of_business | String | Legal structure of the business (e.g., Private Limited Company) |
data.details.taxpayer_type | String | Type of taxpayer (e.g., Regular) |
data.details.gstin_status | String | Current status of the GSTIN (e.g., Active) |
data.details.date_of_registration | String | Date of GST registration (YYYY-MM-DD format) |
data.details.hsn_info | Object | Contains HSN codes for goods and services |
status_code | Integer | HTTP status code of the request |
success | Boolean | Indicates whether the API call was successful |
message | String | Response message |
message_code | String | Code representing the response message |
{
"data": {
"verified": true,
"details": {
"contact_details": {
"principal": {
"address": "House No.364, Tehsil, Sikar, Rajasthan, 123456",
"email": "advchahat121@gmail.com",
"mobile": "8571967928",
"nature_of_business": "Office / Sale Office"
},
"additional": []
},
"promoters": [],
"annual_turnover": "",
"annual_turnover_fy": "",
"percentage_in_cash_fy": "",
"percentage_in_cash": "",
"aadhaar_validation": "Yes",
"aadhaar_validation_date": "2021-07-15",
"address_details": {},
"liability_percentage_details": {},
"less_info": true,
"client_id": null,
"gstin": "08ABBCS1234D1ZN",
"pan_number": "ABBCS1234D",
"business_name": "Services Private Limited",
"legal_name": "Services Private Limited",
"center_jurisdiction": "Commissionerate - ALWAR,Division - GST DIVISION-G SIKAR,Range",
"state_jurisdiction": "State - Rajasthan,Zone - Jaipur-IV,Circle",
"date_of_registration": "2021-07-15",
"constitution_of_business": "Private Limited Company",
"taxpayer_type": "Regular",
"gstin_status": "Active",
"date_of_cancellation": "1800-01-01",
"field_visit_conducted": "No",
"nature_bus_activities": [
"Supplier of Services"
],
"nature_of_core_business_activity_code": "SPO",
"nature_of_core_business_activity_description": "Service Provider and Others",
"filing_status": [],
"address": null,
"hsn_info": {
"goods": [],
"services": [
{
"description": "Information technology (IT) consulting and support services",
"hsn": "998313"
},
{
"description": "Other support services n.e.c.",
"hsn": "998599"
},
{
"description": "Other information technology services n.e.c",
"hsn": "998319"
},
{
"description": "Support services",
"hsn": "9985"
}
]
},
"filing_frequency": []
}
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}
curl --location --request POST 'https://kyc-api.surepass.app/api/v1/corporate-otp/gstin/submit-otp' \
--header 'Content-Type: application/json' \
--data-raw '{
"client_id": "gst_otp_tfwewGShXrPxKSmvyrmg",
"otp": "1234"
}'
{
"data": {
"verified": true,
"details": {
"contact_details": {
"principal": {
"address": "House No.364, Tehsil, Sikar, Rajasthan, 123456",
"email": "advchahat121@gmail.com",
"mobile": "8571967928",
"nature_of_business": "Office / Sale Office"
},
"additional": []
},
"promoters": [],
"annual_turnover": "",
"annual_turnover_fy": "",
"percentage_in_cash_fy": "",
"percentage_in_cash": "",
"aadhaar_validation": "Yes",
"aadhaar_validation_date": "2021-07-15",
"address_details": {},
"liability_percentage_details": {},
"less_info": true,
"client_id": null,
"gstin": "08ABBCS1234D1ZN",
"pan_number": "ABBCS1234D",
"business_name": "Services Private Limited",
"legal_name": "Services Private Limited",
"center_jurisdiction": "Commissionerate - ALWAR,Division - GST DIVISION-G SIKAR,Range",
"state_jurisdiction": "State - Rajasthan,Zone - Jaipur-IV,Circle",
"date_of_registration": "2021-07-15",
"constitution_of_business": "Private Limited Company",
"taxpayer_type": "Regular",
"gstin_status": "Active",
"date_of_cancellation": "1800-01-01",
"field_visit_conducted": "No",
"nature_bus_activities": [
"Supplier of Services"
],
"nature_of_core_business_activity_code": "SPO",
"nature_of_core_business_activity_description": "Service Provider and Others",
"filing_status": [],
"address": null,
"hsn_info": {
"goods": [],
"services": [
{
"description": "Information technology (IT) consulting and support services",
"hsn": "998313"
},
{
"description": "Other support services n.e.c.",
"hsn": "998599"
},
{
"description": "Other information technology services n.e.c",
"hsn": "998319"
},
{
"description": "Support services",
"hsn": "9985"
}
]
},
"filing_frequency": []
}
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}