ITRGET AIS Details

AIS Details — Financial Transaction Data

Retrieve Annual Information Statement data — savings interest, dividends, property transactions, and other financial data reported to Income Tax.

curl -X GET "https://production.deepvue.tech/v1/verification/itr/get-ais-details?itr_client_id=example_string&financial_year=example_string" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_TOKEN (JWT)" \
  -H "x-api-key: YOUR_API_KEY"
{
  "code": 200,
  "timestamp": 1771592310679,
  "transaction_id": "808f86a8-d792-ca72-8823-99c5c27dd6ad",
  "sub_code": "SUCCESS",
  "message": "AIS details fetched successfully.",
  "data": {
    "itr_client_id": "itr_qkgtvIwLcuooWhtrFFbK",
    "pan_no": "EGDPK2567K",
    "ais_file": "https://aadhaar-kyc-docs.s3.amazonaws.com/itr/...",
    "file_type": "json",
    "status": "completed",
    "financial_year": "2020-21"
  }
}
GET
/v1/verification/itr/get-ais-details
GET
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.
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.

Query Parameters

Responses

codeinteger
timestampinteger
transaction_idstring
sub_codestring
messagestring
dataobject

Overview

This API retrieves AIS (Annual Information Statement) details directly within the API response, including a secure link to the JSON file. It enables real-time access to an individual's financial and personal information for a specified financial year, facilitating immediate review and integration of AIS data within your applications.

The API requires two parameters: itr_client_id (unique client identifier) and financial_year (the requested financial period, e.g., 2020-21). On success, the response includes transaction ID, PAN number, secure file URL, file type designation, completion status, and the requested financial year.

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.