ITRDownload ITR

Download Income Tax Return Documents

Download the filed ITR documents for a registered PAN. Access acknowledgment receipts, computation sheets, and filed returns.

curl -X POST "https://production.deepvue.tech/v1/verification/itr/itr-download" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_TOKEN (JWT)" \
  -H "x-api-key: YOUR_API_KEY" \
  -d '{
  "itr_client_id": "example_string"
}'
{
  "code": 42,
  "timestamp": 42,
  "transaction_id": "example_string",
  "sub_code": "example_string",
  "message": "example_string",
  "data": {
    "client_id": "example_string",
    "pan_no": "example_string",
    "filed_itrs": "null"
  }
}
POST
/v1/verification/itr/itr-download
POST
Bearer Token (JWT)
Bearer Tokenstring
Required

ACCESS_TOKEN generated from the authorize endpoint. Should be included in the header as Bearer .

ACCESS_TOKEN generated from the authorize endpoint. Should be included in the header as Bearer .
API Key (header: x-api-key)
x-api-keystring
Required

The CLIENT_SECRET provided to you. This header parameter is required for authentication purposes.

The CLIENT_SECRET provided to you. This header parameter is required for authentication purposes.
Content-Typestring
Required

The media type of the request body

Options: application/json
itr_client_idstring
Required

The unique identifier of the client for whom the Income Tax Return (ITR) is being downloaded.

Request Preview
Response

Response will appear here after sending the request

Authentication

header
Authorizationstring
Required

Bearer token (JWT). ACCESS_TOKEN generated from the authorize endpoint. Should be included in the header as Bearer .

header
x-api-keystring
Required

API Key for authentication. The CLIENT_SECRET provided to you. This header parameter is required for authentication purposes.

Body

application/json
itr_client_idstring
Required

The unique identifier of the client for whom the Income Tax Return (ITR) is being downloaded.

Responses

codeinteger
Required
timestampinteger
transaction_idstring
sub_codestring
messagestring
Required
dataobject

Overview

This API enables downloading of Income Tax Return information including ITR ID, filing year, acknowledgement number, ITR form type, filing date, and ITR status. Upon successful execution, the API returns the client ID, PAN number, and a collection of filed ITRs associated with that client.

The API requires the itr_client_id parameter, which serves as a unique identifier for the client whose Income Tax Return information is being retrieved.

You need an authorized access token to access any of the Platform APIs. One access token is valid for only 24 hours. After expiration, you can renew the token by using the Authorize endpoint to receive a fresh access token.