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 for authentication. Format: Bearer YOUR_JWT_TOKEN |
Content-Type | Yes | Must be set to application/json |
Parameter | Type | Required | Description |
---|---|---|---|
id_number | String | Yes | The GSTIN (Goods and Services Tax Identification Number) to verify. Must be a valid 15-character GSTIN. |
{
"id_number": "08AKWPJ1234H1ZN"
}
Parameter | Type | Description |
---|---|---|
data | Object | Container for all the GSTIN verification data |
data.address_details | Object | Detailed address information of the business |
data.client_id | String | Unique identifier for the client making the request |
data.gstin | String | The verified GSTIN of the business |
data.pan_number | String | PAN (Permanent Account Number) of the business |
data.business_name | String | Trading name of the business entity |
data.legal_name | String | Legal registered name of the business owner or entity |
data.center_jurisdiction | String | Central tax jurisdiction details |
data.state_jurisdiction | String | State tax jurisdiction details |
data.date_of_registration | String | Date when the business was registered for GST (YYYY-MM-DD) |
data.constitution_of_business | String | Legal structure of the business (e.g., Proprietorship, Partnership) |
data.taxpayer_type | String | Category of taxpayer (Regular, Composition) |
data.gstin_status | String | Current status of the GSTIN (Active, Inactive) |
data.date_of_cancellation | String | Date when GSTIN was cancelled, if applicable (YYYY-MM-DD) |
data.field_visit_conducted | String | Whether a field visit was conducted for verification (Yes, No) |
data.nature_bus_activities | Array | List of business activities the entity is engaged in |
data.nature_of_core_business_activity_code | String | Code representing the primary business activity |
data.nature_of_core_business_activity_description | String | Description of the primary business activity |
data.aadhaar_validation | String | Whether Aadhaar validation was completed (Yes, No) |
data.aadhaar_validation_date | String | Date of Aadhaar validation (YYYY-MM-DD) |
data.filing_status | Array | GST return filing status information |
data.address | String | Complete business address as a single string |
data.hsn_info | Object | Information related to HSN (Harmonized System of Nomenclature) codes |
data.filing_frequency | Array | Frequency of GST return filing |
status_code | Integer | HTTP status code of the response |
success | Boolean | Indicates if the API request was successful |
message | String | Additional information about the response (null if successful) |
message_code | String | Code indicating the status of the response |
{
"data": {
"address_details": {},
"client_id": "corporate_gstin_hemuprVyNGvtQAvRJHXy",
"gstin": "08AKWPJ1234H1ZN",
"pan_number": "AKWPJ1234H",
"business_name": "MINDA MARWAR PRODUCER COMPANY",
"legal_name": "MADAN LAL JAT",
"center_jurisdiction": "Commissionerate - JODHPUR,Division - GST DIVISION",
"state_jurisdiction": "State - Rajasthan,Zone",
"date_of_registration": "2021-10-20",
"constitution_of_business": "Proprietorship",
"taxpayer_type": "Regular",
"gstin_status": "Active",
"date_of_cancellation": "1800-01-01",
"field_visit_conducted": "No",
"nature_bus_activities": [
"Retail Business",
"Wholesale Business"
],
"nature_of_core_business_activity_code": "NA",
"nature_of_core_business_activity_description": "NA",
"aadhaar_validation": "Yes",
"aadhaar_validation_date": "2021-10-20",
"filing_status": [],
"address": "MINDA NAVA, WARD NO. 15, VILL. BHEEVPURA",
"hsn_info": {},
"filing_frequency": []
},
"status_code": 200,
"success": true,
"message": null,
"message_code": "success"
}
{
"data": null,
"status_code": 400,
"success": false,
"message": "Invalid GSTIN format",
"message_code": "invalid_input"
}
curl --location --request POST 'https://kyc-api.surepass.app/api/v1/corporate/gstin' \
--header 'Content-Type: application/json' \
--data-raw '{
"id_number": "08AKWPJ1234H1ZN"
}'
{
"data": {
"address_details": {},
"client_id": "corporate_gstin_hemuprVyNGvtQAvRJHXy",
"gstin": "08AKWPJ1234H1ZN",
"pan_number": "AKWPJ1234H",
"business_name": "MINDA MARWAR PRODUCER COMPANY",
"legal_name": "MADAN LAL JAT",
"center_jurisdiction": "Commissionerate - JODHPUR,Division - GST DIVISION",
"state_jurisdiction": "State - Rajasthan,Zone",
"date_of_registration": "2021-10-20",
"constitution_of_business": "Proprietorship",
"taxpayer_type": "Regular",
"gstin_status": "Active",
"date_of_cancellation": "1800-01-01",
"field_visit_conducted": "No",
"nature_bus_activities": [
"Retail Business",
"Wholesale Business"
],
"nature_of_core_business_activity_code": "NA",
"nature_of_core_business_activity_description": "NA",
"aadhaar_validation": "Yes",
"aadhaar_validation_date": "2021-10-20",
"filing_status": [],
"address": "MINDA NAVA, WARD NO. 15, VILL. BHEEVPURA",
"hsn_info": {},
"filing_frequency": []
},
"status_code": 200,
"success": true,
"message": null,
"message_code": "success"
}