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 {JWT_TOKEN} |
| Content-Type | Yes | Must be set to application/json |
| Parameter | Type | Required | Description |
|---|---|---|---|
| client_id | String | Yes | Unique identifier for the client/taxpayer whose TIS data needs to be retrieved. Format: itr_{alphanumeric_string} |
{
"client_id": "itr_JkrkByMtlRdWdsyne"
}| Parameter | Type | Description |
|---|---|---|
| data | Object | Container object for all taxpayer information |
| data.client_id | String | Unique client identifier used in the request |
| data.pan_no | String | Permanent Account Number (PAN) of the taxpayer |
| data.tis_data | Object | Complete Taxpayer Information Summary data |
| data.tis_data.document_name | String | Name of the document (Taxpayer Information Summary) |
| data.tis_data.financial_year | String | Financial year for which the TIS is generated (e.g., "2020-21") |
| data.tis_data.general_information | Array | Array containing taxpayer's personal and contact details |
| data.tis_data.general_information[].permanent_account_number__pan_ | String | PAN of the assessee |
| data.tis_data.general_information[].aadhaar_number | String | Masked Aadhaar number (format: XXXX XXXX followed by last 4 digits) |
| data.tis_data.general_information[].name_of_assessee | String | Full name of the taxpayer |
| data.tis_data.general_information[].date_of_birth | String | Date of birth in DD/MM/YYYY format |
| data.tis_data.general_information[].mobile_number | String | Registered mobile number |
| data.tis_data.general_information[].e_mail_address | String | Registered email address |
| data.tis_data.general_information[].address | String | Complete registered address |
| data.tis_data.sections | Array | Array of sections containing detailed financial transaction information |
| data.tis_data.sections[].title | String/Null | Section title if applicable |
| data.tis_data.sections[].sub_section | Array | Array of subsections |
| data.tis_data.sections[].elements | Array | Array of elements containing transaction details and summaries |
| data.tis_data.sections[].elements[].title | String/Null | Element title (e.g., document name, annexure name) |
| data.tis_data.sections[].elements[].summary | Array | Array of summary entries for financial transactions |
| data.tis_data.sections[].elements[].summary[].part | String | Type of financial statement (e.g., "SFT" for Statement of Financial Transactions) |
| data.tis_data.sections[].elements[].summary[].information_description | String | Description of the financial transaction (e.g., "Dividend income (SFT-015)") |
| data.tis_data.sections[].elements[].summary[].information_source | String | Source entity that reported the information (includes name and identification) |
| data.tis_data.sections[].elements[].summary[].amount_description | String | Description of the amount field |
| data.tis_data.sections[].elements[].summary[].reported_by_source | String | Amount reported by the source entity |
| data.tis_data.sections[].elements[].summary[].processed_by_system | String | Amount processed by the Income Tax system |
| data.tis_data.sections[].elements[].summary[].accepted_by_taxpayer | String | Amount accepted/confirmed by the taxpayer |
| data.tis_data.sections[].elements[].details | Array | Array for detailed information (if applicable) |
| status_code | Integer | HTTP status code of the response |
| success | Boolean | Indicates whether the request was successful |
| message | String | Human-readable message describing the result |
| message_code | String | Machine-readable message code for programmatic handling |
{
"data": {
"client_id": "itr_JkrkByMtlRdWdsyne",
"pan_no": "ABCPD1234E",
"tis_data": {
"document_name": "Taxpayer Information Summary (TIS)",
"financial_year": "2020-21",
"general_information": [
{
"permanent_account_number__pan_": "ABCPN1234E",
"aadhaar_number": "XXXX XXXX 3863",
"name_of_assessee": "MAYUR VIHAR",
"date_of_birth": "02/12/1996",
"mobile_number": "9876543210",
"e_mail_address": "abc1234@gmail.com",
"address": "KALYAN,THANE,421306,MAHARASHTRA"
}
],
"sections": [
{
"title": null,
"sub_section": [],
"elements": [
{
"title": "Taxpayer Information Summary (TIS)",
"summary": [],
"details": []
},
{
"title": "Annexure to Taxpayer Information Summary (TIS)",
"summary": [
{
"part": "SFT",
"information_description": "Dividend income (SFT-015)",
"information_source": "FINANCE CORPORATION (AACCI1234C.AN123)",
"amount_description": "Total Dividend amount",
"reported_by_source": "611",
"processed_by_system": "611",
"accepted_by_taxpayer": "611"
},
{
"part": "SFT",
"information_description": "Dividend income (SFT-015)",
"information_source": "Corporate LIMITED (ABCCI12340L.AZ123)",
"amount_description": "Total Dividend amount",
"reported_by_source": "20",
"processed_by_system": "20",
"accepted_by_taxpayer": "20"
}
],
"details": []
},
{
"title": null,
"summary": [
{
"part": "SFT",
"information_description": "Sale of listed equity share (Depository)",
"information_source": "ABC SERVICES(I) LIMITED (AAACC1234AMUMC12345A)",
"amount_description": "Value of consideration",
"reported_by_source": "10,645",
"processed_by_system": "10,645",
"accepted_by_taxpayer": "10,645"
}
],
"details": []
},
{
"title": null,
"summary": [
{
"part": "SFT",
"information_description": "Purchase of securities (SFT - 017)",
"information_source": "ABC SERVICES(I) LIMITED (AAACC1234AMUMC12345A)",
"amount_description": "Total purchase amount",
"reported_by_source": "8,149",
"processed_by_system": "8,149",
"accepted_by_taxpayer": "8,149"
}
],
"details": []
}
]
}
]
}
},
"status_code": 200,
"success": true,
"message": "AIS downloaded successfully",
"message_code": "success"
}{
"status_code": 400,
"success": false,
"message": "Invalid client_id provided",
"message_code": "invalid_request"
}curl --location --request POST 'https://kyc-api.surepass.app' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"client_id": "itr_JkrkByMtlRdWdsynelta"
}'{
"data": {
"client_id": "itr_JkrkByMtlRdWdsyne",
"pan_no": "ABCPD1234E",
"tis_data": {
"document_name": "Taxpayer Information Summary (TIS)",
"financial_year": "2020-21",
"general_information": [
{
"permanent_account_number__pan_": "ABCPN1234E",
"aadhaar_number": "XXXX XXXX 3863",
"name_of_assessee": "MAYUR VIHAR",
"date_of_birth": "02/12/1996",
"mobile_number": "9876543210",
"e_mail_address": "abc1234@gmail.com",
"address": "KALYAN,THANE,421306,MAHARASHTRA"
}
],
"sections": [
{
"title": null,
"sub_section": [],
"elements": [
{
"title": "Taxpayer Information Summary (TIS)",
"summary": [],
"details": []
},
{
"title": "Annexure to Taxpayer Information Summary (TIS)",
"summary": [
{
"part": "SFT",
"information_description": "Dividend income (SFT-015)",
"information_source": "FINANCE CORPORATION (AACCI1234C.AN123)",
"amount_description": "Total Dividend amount",
"reported_by_source": "611",
"processed_by_system": "611",
"accepted_by_taxpayer": "611"
},
{
"part": "SFT",
"information_description": "Dividend income (SFT-015)",
"information_source": "Corporate LIMITED (ABCCI12340L.AZ123)",
"amount_description": "Total Dividend amount",
"reported_by_source": "20",
"processed_by_system": "20",
"accepted_by_taxpayer": "20"
}
],
"details": []
},
{
"title": null,
"summary": [
{
"part": "SFT",
"information_description": "Sale of listed equity share (Depository)",
"information_source": "ABC SERVICES(I) LIMITED (AAACC1234AMUMC12345A)",
"amount_description": "Value of consideration",
"reported_by_source": "10,645",
"processed_by_system": "10,645",
"accepted_by_taxpayer": "10,645"
}
],
"details": []
},
{
"title": null,
"summary": [
{
"part": "SFT",
"information_description": "Purchase of securities (SFT - 017)",
"information_source": "ABC SERVICES(I) LIMITED (AAACC1234AMUMC12345A)",
"amount_description": "Total purchase amount",
"reported_by_source": "8,149",
"processed_by_system": "8,149",
"accepted_by_taxpayer": "8,149"
}
],
"details": []
}
]
}
]
}
},
"status_code": 200,
"success": true,
"message": "AIS downloaded successfully",
"message_code": "success"
}