Form 26AS Details — TDS & Tax Credits
Retrieve parsed Form 26AS data — TDS deductions, advance tax, self-assessment tax, and refund details for any registered PAN.
curl -X GET "https://production.deepvue.tech/v1/verification/itr/get-26as-details?itr_client_id=client_a73af0b7accc4c3fbaa3dd2dc2cab550&tds_id=tds_a73af0b7accc4c3fbaa3dd2dc2cab550" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_TOKEN (JWT)" \
-H "x-api-key: YOUR_API_KEY"
import requests
import json
url = "https://production.deepvue.tech/v1/verification/itr/get-26as-details?itr_client_id=client_a73af0b7accc4c3fbaa3dd2dc2cab550&tds_id=tds_a73af0b7accc4c3fbaa3dd2dc2cab550"
headers = {
"Content-Type": "application/json",
"Authorization": "Bearer YOUR_API_TOKEN (JWT)",
"x-api-key": "YOUR_API_KEY"
}
response = requests.get(url, headers=headers)
print(response.json())
const response = await fetch("https://production.deepvue.tech/v1/verification/itr/get-26as-details?itr_client_id=client_a73af0b7accc4c3fbaa3dd2dc2cab550&tds_id=tds_a73af0b7accc4c3fbaa3dd2dc2cab550", {
method: "GET",
headers: {
"Content-Type": "application/json",
"Authorization": "Bearer YOUR_API_TOKEN (JWT)",
"x-api-key": "YOUR_API_KEY"
}
});
const data = await response.json();
console.log(data);
package main
import (
"fmt"
"net/http"
)
func main() {
req, err := http.NewRequest("GET", "https://production.deepvue.tech/v1/verification/itr/get-26as-details?itr_client_id=client_a73af0b7accc4c3fbaa3dd2dc2cab550&tds_id=tds_a73af0b7accc4c3fbaa3dd2dc2cab550", nil)
if err != nil {
panic(err)
}
req.Header.Set("Content-Type", "application/json")
req.Header.Set("Authorization", "Bearer YOUR_API_TOKEN (JWT)")
req.Header.Set("x-api-key", "YOUR_API_KEY")
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
panic(err)
}
defer resp.Body.Close()
fmt.Println("Response Status:", resp.Status)
}
require 'net/http'
require 'json'
uri = URI('https://production.deepvue.tech/v1/verification/itr/get-26as-details?itr_client_id=client_a73af0b7accc4c3fbaa3dd2dc2cab550&tds_id=tds_a73af0b7accc4c3fbaa3dd2dc2cab550')
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = true
request = Net::HTTP::Get.new(uri)
request['Content-Type'] = 'application/json'
request['Authorization'] = 'Bearer YOUR_API_TOKEN (JWT)'
request['x-api-key'] = 'YOUR_API_KEY'
response = http.request(request)
puts response.body
{
"code": 200,
"timestamp": 1783592810924,
"transaction_id": "457b4b7b555b421ab157f047d39bf077",
"sub_code": "SUCCESS",
"message": "26AS details fetched successfully.",
"data": {
"assessment_year": "2025-2026",
"tds_data": [
{
"sr_no": 1,
"name_of_deductor": "DEEPVUE TECHNOLOGIES PRIVATE LIMITED",
"total_amount_paid": "1.00",
"total_tax_deducted": "1.00",
"total_tds_deposited": "1.00",
"tan_of_deductor": "ABCDE1234F",
"section": "192",
"transaction_date": "01-Mar-2025",
"status_of_booking": "F",
"date_of_booking": "22-May-2025",
"remarks": "-",
"amount_paid": "1.00",
"tax_deducted": "1.00",
"tds_deposited": "1.00"
},
{
"sr_no": 2,
"name_of_deductor": "DEEPVUE TECHNOLOGIES PRIVATE LIMITED",
"total_amount_paid": "1.00",
"total_tax_deducted": "1.00",
"total_tds_deposited": "1.00",
"tan_of_deductor": "ABCDE1234F",
"section": "192",
"transaction_date": "12-Feb-2025",
"status_of_booking": "F",
"date_of_booking": "22-May-2025",
"remarks": "-",
"amount_paid": "1.00",
"tax_deducted": "1.00",
"tds_deposited": "1.00"
},
{
"sr_no": 3,
"name_of_deductor": "DEEPVUE TECHNOLOGIES PRIVATE LIMITED",
"total_amount_paid": "1.00",
"total_tax_deducted": "1.00",
"total_tds_deposited": "1.00",
"tan_of_deductor": "ABCDE1234F",
"section": "192",
"transaction_date": "19-Jan-2025",
"status_of_booking": "F",
"date_of_booking": "22-May-2025",
"remarks": "-",
"amount_paid": "1.00",
"tax_deducted": "1.00",
"tds_deposited": "1.00"
}
]
}
}
{
"detail": "example_string"
}
{
"detail": "example_string"
}
{
"detail": "example_string"
}
{
"code": 422,
"timestamp": 1783592925836,
"transaction_id": "a0cd276e790243a5af5dec56f61ec70e",
"sub_code": "INVALID_INPUT",
"message": "Given Tds-id or Itr-client-id not found in client"
}
{
"error": "Internal Server Error",
"message": "An unexpected error occurred on the server",
"code": 500,
"requestId": "req_1234567890"
}
/v1/verification/itr/get-26as-details
Target server for requests. Edit to use your own host.
ACCESS_TOKEN generated from the authorize endpoint. Should be included in the header as Bearer .
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
Bearer token (JWT). ACCESS_TOKEN generated from the authorize endpoint. Should be included in the header as Bearer .
API Key for authentication. The CLIENT_SECRET provided to you. This header parameter is required for authentication purposes.
Query Parameters
client_a73af0b7accc4c3fbaa3dd2dc2cab550tds_a73af0b7accc4c3fbaa3dd2dc2cab550Responses
Overview
This API retrieves comprehensive 26AS information related to income tax returns, specifically focusing on tax deducted at source (TDS) and other relevant documentation for tax verification purposes. Use this endpoint to ensure compliance with tax regulations and accurately assess financial standing.
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.