Skip to main content

TDS (Tax Deducted at Source)

Get the cumulative TDS deducted on your trades for the current Indian financial year.

HTTP

MethodGET
Endpoint/trade/api/v2/tds
Rate limit25 requests per 10 seconds

Request Parameters

None.

Example

import requests

headers, path = sign_request("GET", "/trade/api/v2/tds")
response = requests.get(BASE_URL + path, headers=headers)
print(response.json())

Response

{
"data": {
"total_tds_amount": 459.12,
"financial_year": "2024-2025"
}
}

Response Parameters

FieldTypeDescription
total_tds_amountnumberCumulative TDS in INR for the financial year.
financial_yearstringIndian financial year (April–March), e.g. "2024-2025".
note

TDS from C2C orders is recorded with a delay of 1 day. If you've recently traded C2C, expect today's number to update tomorrow.