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 authentication using JWT |
Content-Type | Yes | application/json |
Parameter | Type | Required | Description |
---|---|---|---|
client_id | String | Yes | Unique identifier for the client, obtained from the Create Client endpoint |
{
"client_id": "itr_yvVgzoTdmctBsvQfuFRE"
}
Parameter | Type | Description |
---|---|---|
data | Object | Container for the response data |
data.client_id | String | Unique identifier for the API request |
data.pan_no | String | PAN (Permanent Account Number) of the client |
data.filed_itrv | Array | List of filed ITR documents and their details |
data.filed_itrv[].download_link | String | Secure URL to download the ITR-V document (valid for limited time) |
data.filed_itrv[].pan_no | String | PAN number associated with the ITR filing |
data.filed_itrv[].filing_year | String | Financial year for which the ITR was filed (format: YYYY-YYYY) |
data.filed_itrv[].acknowledgement_no | String | Unique acknowledgement number issued by the Income Tax Department |
data.filed_itrv[].filing_type | String | Type of filing (Original or Revised) |
data.filed_itrv[].status | String | Status of the filing (if applicable) |
status_code | Integer | HTTP status code of the response |
success | Boolean | Indicates if the API request was successful |
message | String | Additional information or error message (null if successful) |
message_code | String | Code indicating the status of the request |
{
"data": {
"client_id": "itr_yvVgzoTdmctBsvQfuFRE",
"pan_no": "AZXAS0122L",
"filed_itrv": [
{
"download_link": "https://aadhaar-kyc-docs.s3.amazonaws.com/itr/itr_yvVgzoTdmctBsvQfjUCk/AZXPS0133L/535617900290624_itrv-2025-01-17-105501029113.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAY5K3QRM5FYWPQJEB%2F20250117%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Date=20250117T105804Z&X-Amz-Expires=600&X-Amz-SignedHeaders=host&X-Amz-Signature=19d709ff5e021e4a7fe8c503d8e22f8ffe575b2e10",
"pan_no": "AZXAS0122L",
"filing_year": "2023-2024",
"acknowledgement_no": "535617900290555",
"filing_type": "Original",
"status": ""
},
{
"download_link": "https://aadhaar-kyc-docs.s3.amazonaws.com/itr/itr_yvVgzoTdmctBsvQfjUCk/AZXPS0133L/285239520230623_itrv-2025-01-17-105501831611.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAY5K3QRM5FYWPQJEB%2F20250117%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Date=20250117T105804Z&X-Amz-Expires=600&X-Amz-SignedHeaders=host&X-Amz-Signature=1388632435be846d8f45b696a128444179e9e17e",
"pan_no": "AZXAS0122L",
"filing_year": "2022-2023",
"acknowledgement_no": "285239520230554",
"filing_type": "Original",
"status": ""
}
]
},
"status_code": 200,
"success": true,
"message": null,
"message_code": "success"
}
{
"data": null,
"status_code": 400,
"success": false,
"message": "Invalid client_id provided",
"message_code": "invalid_client_id"
}
curl --location --request POST 'https://kyc-api.surepass.app/api/v1/itr/download-itr-v' \
--header 'Content-Type: application/json' \
--data-raw '{
"client_id": "itr_yvVgzoTdmctBsvQfuFRE"
}'
{
"data": {
"client_id": "itr_yvVgzoTdmctBsvQfuFRE",
"pan_no": "AZXAS0122L",
"filed_itrv": [
{
"download_link": "https://aadhaar-kyc-docs.s3.amazonaws.com/itr/itr_yvVgzoTdmctBsvQfjUCk/AZXPS0133L/535617900290624_itrv-2025-01-17-105501029113.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAY5K3QRM5FYWPQJEB%2F20250117%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Date=20250117T105804Z&X-Amz-Expires=600&X-Amz-SignedHeaders=host&X-Amz-Signature=19d709ff5e021e4a7fe8c503d8e22f8ffe575b2e10",
"pan_no": "AZXAS0122L",
"filing_year": "2023-2024",
"acknowledgement_no": "535617900290555",
"filing_type": "Original",
"status": ""
},
{
"download_link": "https://aadhaar-kyc-docs.s3.amazonaws.com/itr/itr_yvVgzoTdmctBsvQfjUCk/AZXPS0133L/285239520230623_itrv-2025-01-17-105501831611.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAY5K3QRM5FYWPQJEB%2F20250117%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Date=20250117T105804Z&X-Amz-Expires=600&X-Amz-SignedHeaders=host&X-Amz-Signature=1388632435be846d8f45b696a128444179e9e17e",
"pan_no": "AZXAS0122L",
"filing_year": "2022-2023",
"acknowledgement_no": "285239520230554",
"filing_type": "Original",
"status": ""
}
]
},
"status_code": 200,
"success": true,
"message": null,
"message_code": "success"
}