Tax Computation
curl --request GET \
--url https://api.quicko.com/income-tax/tax-payer/itr/computation-of-taximport requests
url = "https://api.quicko.com/income-tax/tax-payer/itr/computation-of-tax"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.quicko.com/income-tax/tax-payer/itr/computation-of-tax', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.quicko.com/income-tax/tax-payer/itr/computation-of-tax",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.quicko.com/income-tax/tax-payer/itr/computation-of-tax"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.quicko.com/income-tax/tax-payer/itr/computation-of-tax")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.quicko.com/income-tax/tax-payer/itr/computation-of-tax")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"code": 200,
"data": {
"transaction_id": "79b47187-acd7-4049-9b7d-2e4c76137791",
"timestamp": 1763118109858,
"data": {
"sheets": [
{
"blocks": [
{
"items": [
{
"total_taxable_salary": 0
},
{
"total_taxable_house_property": 8602
},
{
"total_taxable_capital_gains": 58480
},
{
"total_taxable_other": 0
},
{
"total_taxable_business_profession": 0
},
{
"total_headwise_income": 67082
},
{
"current_year_loss_adjusted": 0
},
{
"brought_forward_loss_adjusted": 0
},
{
"losses_adjusted": 0
},
{
"carry_forward_loss": 4783885
},
{
"gross_normal_income": 8602
},
{
"gross_special_income": 58480
},
{
"gross_total_income": 67082
},
{
"total_chapter_vi_a_deduction": 0
},
{
"total_normal_income": 8600
},
{
"total_special_income": 58480
},
{
"aggregate_income": 0
},
{
"total_income": 67080
},
{
"total_exempt_income": 0
},
{
"exempt_ltcg_under_112a": 0
},
{
"tax_payable_on_normal_rate_income": 0
},
{
"tax_payable_on_special_rate_income": 0
},
{
"tax_payable_on_total_income": 0
},
{
"rebate": 0
},
{
"tax_after_rebate": 0
},
{
"surcharge_before_marginal_relief": 0
},
{
"surcharge": 0
},
{
"cess": 0
},
{
"surcharge_and_cess": 0
},
{
"gross_tax_payable": 0
},
{
"relief_us_89": 0
},
{
"relief_us_90_and_90a": 0
},
{
"relief_us_91": 0
},
{
"total_relief": 0
},
{
"effective_tax_rate": 0
},
{
"interest_234_a": 0
},
{
"interest_234_b": 0
},
{
"interest_234_c": 0
},
{
"fees_234_f": 0
},
{
"total_interest_and_penalty": 0
},
{
"net_tax_payable": 0
},
{
"total_advance_tax_paid": 0
},
{
"total_self_assessment_tax": 0
},
{
"total_tax_deducted_at_source": 0
},
{
"total_tax_collected_at_source": 0
},
{
"total_tax_withheld_outside_india": 0
},
{
"total_taxes_paid": 0
},
{
"refund": 0
},
{
"due": 0
}
],
"name": "tax_computation_list",
"@entity": "list"
}
],
"name": "tax_computation_sheet",
"@entity": "sheet"
}
],
"name": "tax_computation_workbook",
"@entity": "workbook"
},
"code": 200
},
"transaction_id": "738a0cfb-ae0d-427b-b80b-d3aace5a8778",
"timestamp": 1699351274048
}Computation of Tax
API to get the computation of tax
GET
/
income-tax
/
tax-payer
/
itr
/
computation-of-tax
Tax Computation
curl --request GET \
--url https://api.quicko.com/income-tax/tax-payer/itr/computation-of-taximport requests
url = "https://api.quicko.com/income-tax/tax-payer/itr/computation-of-tax"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.quicko.com/income-tax/tax-payer/itr/computation-of-tax', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.quicko.com/income-tax/tax-payer/itr/computation-of-tax",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.quicko.com/income-tax/tax-payer/itr/computation-of-tax"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.quicko.com/income-tax/tax-payer/itr/computation-of-tax")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.quicko.com/income-tax/tax-payer/itr/computation-of-tax")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"code": 200,
"data": {
"transaction_id": "79b47187-acd7-4049-9b7d-2e4c76137791",
"timestamp": 1763118109858,
"data": {
"sheets": [
{
"blocks": [
{
"items": [
{
"total_taxable_salary": 0
},
{
"total_taxable_house_property": 8602
},
{
"total_taxable_capital_gains": 58480
},
{
"total_taxable_other": 0
},
{
"total_taxable_business_profession": 0
},
{
"total_headwise_income": 67082
},
{
"current_year_loss_adjusted": 0
},
{
"brought_forward_loss_adjusted": 0
},
{
"losses_adjusted": 0
},
{
"carry_forward_loss": 4783885
},
{
"gross_normal_income": 8602
},
{
"gross_special_income": 58480
},
{
"gross_total_income": 67082
},
{
"total_chapter_vi_a_deduction": 0
},
{
"total_normal_income": 8600
},
{
"total_special_income": 58480
},
{
"aggregate_income": 0
},
{
"total_income": 67080
},
{
"total_exempt_income": 0
},
{
"exempt_ltcg_under_112a": 0
},
{
"tax_payable_on_normal_rate_income": 0
},
{
"tax_payable_on_special_rate_income": 0
},
{
"tax_payable_on_total_income": 0
},
{
"rebate": 0
},
{
"tax_after_rebate": 0
},
{
"surcharge_before_marginal_relief": 0
},
{
"surcharge": 0
},
{
"cess": 0
},
{
"surcharge_and_cess": 0
},
{
"gross_tax_payable": 0
},
{
"relief_us_89": 0
},
{
"relief_us_90_and_90a": 0
},
{
"relief_us_91": 0
},
{
"total_relief": 0
},
{
"effective_tax_rate": 0
},
{
"interest_234_a": 0
},
{
"interest_234_b": 0
},
{
"interest_234_c": 0
},
{
"fees_234_f": 0
},
{
"total_interest_and_penalty": 0
},
{
"net_tax_payable": 0
},
{
"total_advance_tax_paid": 0
},
{
"total_self_assessment_tax": 0
},
{
"total_tax_deducted_at_source": 0
},
{
"total_tax_collected_at_source": 0
},
{
"total_tax_withheld_outside_india": 0
},
{
"total_taxes_paid": 0
},
{
"refund": 0
},
{
"due": 0
}
],
"name": "tax_computation_list",
"@entity": "list"
}
],
"name": "tax_computation_sheet",
"@entity": "sheet"
}
],
"name": "tax_computation_workbook",
"@entity": "workbook"
},
"code": 200
},
"transaction_id": "738a0cfb-ae0d-427b-b80b-d3aace5a8778",
"timestamp": 1699351274048
}⌘I