ITRCreate Client

Register PAN for ITR Data Access

Register a PAN with Income Tax credentials to enable ITR, 26AS, and AIS data retrieval. First step in the income verification flow.

curl -X POST "https://production.deepvue.tech/v1/verification/itr/create-client" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_TOKEN (JWT)" \
  -H "x-api-key: YOUR_API_KEY" \
  -d '{
  "username": "John Doe",
  "password": "example_string"
}'
{
  "code": 42,
  "timestamp": 42,
  "transaction_id": "example_string",
  "sub_code": "example_string",
  "message": "example_string",
  "data": {}
}
POST
/v1/verification/itr/create-client
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
usernamestring
Required

This body parameter specifies the username of the client being created for the verification process.

passwordstring
Required

This body parameter represents the password of the client being created for the verification process.

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
usernamestring
Required

This body parameter specifies the username of the client being created for the verification process.

passwordstring
Required

This body parameter represents the password of the client being created for the verification process.

Responses

codeinteger
timestampinteger
transaction_idstring
sub_codestring
messagestring
dataobject

Overview

The ITR APIs enable businesses to download Income Tax Return information, such as ITR ID, Filing Year, Acknowledgement Number, ITR Form, Filing Date, ITR status, and more. The Create Client endpoint accepts username and password credentials to generate a unique client ID required for all subsequent ITR API operations.

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.