ITRGet ITR Details

ITR Filing Details — Income & Tax Summary

Get parsed ITR data — gross income, deductions, tax paid, refund status, and filing details for any registered PAN.

curl -X GET "https://production.deepvue.tech/v1/verification/itr/get-itr-details?itr_client_id=example_string&itr_id=example_string" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_TOKEN (JWT)" \
  -H "x-api-key: YOUR_API_KEY"
{
  "code": 42,
  "timestamp": 42,
  "transaction_id": "example_string",
  "sub_code": "example_string",
  "message": "example_string",
  "data": {
    "gender": "null",
    "name": "null",
    "fathers_name": "null",
    "email": "null",
    "pincode": "null",
    "aadhaar_no": "null",
    "mobile_no": "null",
    "address": "null",
    "income": "null",
    "gross_income": "null",
    "itr_type": "null",
    "dob": "null",
    "doi": "null",
    "raw_itr": "null"
  }
}
GET
/v1/verification/itr/get-itr-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
Required
timestampinteger
transaction_idstring
sub_codestring
messagestring
Required
dataobject

Overview

This API retrieves comprehensive Income Tax Return details for a specific client. The response includes personal identifiers (name, father's name, date of birth, gender), contact information (email, mobile number, address, pincode), Aadhaar number, financial details (income, gross income), tax filing specifics (ITR type, date of issue, filing date), acknowledgement number, and raw ITR data.

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.