ITRDownload 26AS

Download Form 26AS Statement

Download the complete Form 26AS tax credit statement as a file. Includes all TDS entries, tax payments, and refund information.

curl -X POST "https://production.deepvue.tech/v1/verification/itr/26as-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",
    "tds": "null"
  }
}
POST
/v1/verification/itr/26as-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 the 26AS form by providing a unique ITR client identifier. The 26AS form contains tax deducted at source (TDS) information and other relevant documentation for tax verification purposes.

The API requires the itr_client_id parameter, which serves as a unique identifier for the client whose 26AS form 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.