TaxBuddy API integration & ITR data export services

Authorized protocol analysis and OpenFinance-aligned API delivery for TaxBuddy: Income Tax & Finance (com.taxbuddy.gst)

Source code from $300 · Pay-per-call API available
OpenData · OpenFinance · ITR protocol analysis · AIS / TIS integration

Turn TaxBuddy filings, TDS, GST and refund data into a programmable, compliant data layer

TaxBuddy is one of India's fastest-growing AI-assisted ITR platforms, serving more than 13 lakh users across 2,600+ towns, with auto-import of Form 16, AIS, TIS, 26AS and capital gains data. Our studio delivers authorized interface implementations that let fintechs, neobanks, wealth platforms and CA firms programmatically read and sync this same data — without re-entry, spreadsheets or manual CSVs.

Filing & refund data export — Pull a user's ITR history (ITR-1 to ITR-4), acknowledgement numbers, e-verification status and live refund tracking for downstream dashboards and CRMs.
AIS / TIS / 26AS normalization — Retrieve the Annual Information Statement, Tax Information Summary and Form 26AS in machine-readable JSON with deduplicated TDS, SFT and interest entries.
GST & TDS compliance APIs — GSTIN lookup, GSTR-1 / 3B period data, TDS filings and ROC compliance exports for SME and accounting back-offices.

Feature modules

Each module below maps directly to a screen or workflow inside TaxBuddy: Income Tax & Finance. We deliver them as discrete endpoints so partners can integrate only what they need.

ITR filing & history API

Read a user's filed returns across AY 2021-22 onward: ITR type, gross total income, taxable income, refund due, acknowledgement number, filing mode (expert-assisted / DIY / AI) and e-verification timestamp. Use case: client onboarding for wealth managers that need verified income proof.

Form 16 & salary parser

Structured extraction of Part A / Part B Form 16 fields — employer TAN, gross salary, Section 10 exemptions, Chapter VI-A deductions, TDS deducted quarter-wise. Use case: salary verification for digital lending and BNPL underwriting.

AIS / TIS / 26AS sync

Paginated pull of AIS categories (SFT, TDS, TCS, GST turnover, interest, dividend, mutual fund redemptions) and reconciled TIS totals. Use case: cross-verification between brokerage CRMs and the Income Tax Department's own data.

Refund tracker webhook

Event-driven callbacks whenever refund status changes on the ITR e-filing portal (processed, partially adjusted, sent to bank, failed). Use case: in-app notifications and CA-client status dashboards replacing daily manual checks.

GST & TDS workflow

GSTIN validation, period-wise GSTR-1 invoice lists, GSTR-3B summary totals, TDS / TCS return filings and 24Q/26Q data. Use case: ERP-side reconciliation of input tax credit for SMEs and traders.

Tax notice response pipeline

Upload e-proceedings notices (u/s 143(1), 139(9), 148) via API, fetch AI-generated draft responses, and submit the final reply back to the ITR e-filing portal. Use case: notice-handling SaaS for mid-tier CA firms.

Data available for integration

Below is the core OpenData inventory we can expose from TaxBuddy-linked accounts under user authorization. Fields are derived from the app's documented feature set, public ITD API specifications and real integration work observed in the Indian fintech stack.

Data typeSource (screen / feature)GranularityTypical use
ITR filings listMy Returns → Filing historyPer assessment year, per ITR formIncome verification, KYC enrichment, wealth onboarding
Form 16 / salary dataUpload Form 16 → AI parserPer quarter, per employerLending underwriting, payroll reconciliation
AIS / TIS entriesAIS viewer inside ITR flowPer transaction / per categoryTax reconciliation, high-value transaction monitoring
Form 26ASPre-fill screenPer TDS entry, per deductor TANTDS credit verification, advance tax planning
Capital gains ledgerCapital Gains importerPer scrip / per lot, STCG vs LTCGBroker integration, portfolio tax optimization
Refund statusRefund tracker screenPer PAN, per AY, status-code levelReal-time dashboards, SMS / push notifications
GST filings (GSTR-1 / 3B)GST modulePer GSTIN, per return periodERP ITC reconciliation, SME compliance
TDS / TCS returnsTDS filing workspacePer deductee, per quarterDeductor audit logs, quarterly compliance
Portfolio Doctor analyticsPortfolio DoctorPer holding, per asset classRobo-advisory feeds, rebalance triggers
Tax notices & responsesNotice inboxPer DIN (Document ID Number)Notice-management SaaS, CA firm dashboards

Typical integration scenarios

1. Digital lender income verification

A BNPL platform needs verified salary and tax liability before approving a ₹2 lakh limit. Under the customer's DPDP-compliant consent, the lender calls /taxbuddy/itr/history and /taxbuddy/form16/parsed, receives a normalized JSON of last three AYs' gross salary, net taxable income and TDS pattern, and feeds it into its scorecard — replacing PDF uploads.

2. Wealth manager onboarding

A wealth platform imports a prospect's Portfolio Doctor output plus AIS dividend + capital-gains entries at onboarding. The mapping to OpenFinance is straightforward: assets, holdings and realized gains become a single accountSummary object consumed by the PMS engine to propose a tax-efficient rebalance.

3. SME accounting & GST ITC

A mid-size trader syncs GSTR-1 invoices from TaxBuddy into its Tally / Zoho Books instance every 24 hours. Our integration maps GSTIN, HSN, CGST/SGST/IGST to the ERP schema and flags mismatched ITC versus GSTR-2B — an OpenData feed replacing spreadsheet reconciliations.

4. CA firm refund & notice dashboard

A chartered accountancy with 400 clients receives a webhook every time any client's ITR refund status advances or a 143(1) intimation arrives. Staff see a live board with PAN-level deltas, skipping repeat logins to the ITR e-filing portal. Maps to the OpenBanking pattern of event-streamed account state.

5. Embedded tax filing (white-label)

A neobank embeds a "File ITR" button inside its app. SSO hands the user to a TaxBuddy-backed flow; once filed, the neobank receives acknowledgement number, refund estimate and a downloadable ITR-V via a signed callback. Mirrors TaxBuddy's own white-label partner model, but integrated by our studio end-to-end.

Technical implementation

1. Authorized login (OAuth + OTP)

POST /api/v1/taxbuddy/auth/login
Content-Type: application/json

{
  "pan": "ABCDE1234F",
  "mobile": "+91XXXXXXXXXX",
  "otp_token": "<otp_session_id>",
  "consent_artifact_id": "dpdp-2026-abc123"
}

200 OK
{
  "access_token": "eyJhbGciOi...",
  "refresh_token": "rtk_9f...",
  "expires_in": 3600,
  "scopes": ["itr.read", "ais.read", "gst.read", "refund.track"]
}

2. ITR history query

GET /api/v1/taxbuddy/itr/history?pan=ABCDE1234F&from_ay=2022-23&to_ay=2025-26
Authorization: Bearer <ACCESS_TOKEN>

200 OK
{
  "pan": "ABCDE1234F",
  "returns": [
    {
      "assessment_year": "2025-26",
      "itr_form": "ITR-2",
      "ack_no": "4700XXXXXXXXXXXXXX",
      "filed_on": "2025-07-18T14:02:11+05:30",
      "gross_total_income": 1842500,
      "refund_due": 27840,
      "status": "PROCESSED",
      "mode": "AI_ASSISTED"
    }
  ],
  "next_cursor": null
}

3. Refund status webhook

POST https://partner.example.com/hooks/taxbuddy
X-TB-Signature: t=1714857600,v1=8f2a...

{
  "event": "refund.status_changed",
  "pan": "ABCDE1234F",
  "assessment_year": "2025-26",
  "ack_no": "4700XXXXXXXXXXXXXX",
  "old_status": "UNDER_PROCESSING",
  "new_status": "REFUND_SENT_TO_BANK",
  "amount": 27840,
  "as_of": "2026-04-15T09:12:04+05:30"
}

// Partner replies 2xx within 5s or we retry with exp-backoff.

4. Error & retry semantics

// Uniform error envelope
{
  "error": {
    "code": "TB_AIS_UNAVAILABLE",
    "http": 503,
    "retryable": true,
    "retry_after_ms": 15000,
    "trace_id": "01J...",
    "message": "Upstream AIS service timed out"
  }
}

// Classes:
// TB_AUTH_*     → refresh token, no retry
// TB_RATE_LIMIT → backoff per Retry-After
// TB_UPSTREAM_* → retry up to 3x with jitter
// TB_CONSENT_*  → re-collect DPDP consent artifact

Compliance & privacy

All integrations are designed around India's Digital Personal Data Protection Act 2023 (DPDP Act) — with phased compliance milestones in November 2026 and May 2027 — plus the relevant RBI Digital Lending Directions and Income Tax Department ERI guidelines. For cross-border partners we layer GDPR-style controls on top, so the same deployment works for EU-based accounting SaaS consuming Indian tax data.

Data flow / architecture

A typical deployment follows four stages: Client app / partner backendOur ingestion & protocol layer (handles TaxBuddy session, OTP, ITD APIs, DigiLocker OAuth) → Normalized storage & reconciliation (AIS/TIS/26AS de-duplication, GST period grouping, refund state machine) → Outbound API / webhook / Excel-JSON export. The middle stages run in a VPC with AES-256 at rest and TLS 1.3 in transit; partners only see the final, consented outbound surface.

Market positioning & user profile

TaxBuddy's primary users are salaried individuals filing ITR-1 / ITR-2, freelance professionals and SME business owners needing combined ITR + GST + TDS handling, and Indian NRIs with capital-gains complexity. The app is India-first, Android-dominant with a growing iOS base, and has become a core channel for AI-assisted filing as the Income Tax Department itself pushes pre-fill adoption. For integrators, that means the data set is rich for Indian domestic fintech (neobanks, brokerages, digital lenders, wealth platforms) and increasingly relevant for global accounting SaaS that support the India corridor. In 2024–2025 TaxBuddy added deeper AI document extraction and white-label partner APIs — the same capabilities we map to for your integration.

Screenshots

Official TaxBuddy screens. Click any thumbnail to view a larger version.

TaxBuddy screenshot 1
TaxBuddy screenshot 2
TaxBuddy screenshot 3
TaxBuddy screenshot 4
TaxBuddy screenshot 5
TaxBuddy screenshot 6
TaxBuddy screenshot 7
TaxBuddy screenshot 8

Similar apps & integration landscape

The Indian ITR-filing ecosystem is crowded; users often hold accounts across several platforms. Any OpenData / OpenFinance solution built around TaxBuddy typically needs to coexist with — or consolidate data from — the apps below. We frame them as part of the broader landscape, not as alternatives to judge.

ClearTax (Black by ClearTax)
Holds multi-year ITR drafts, Form 16 uploads and capital-gains imports. Users moving between ClearTax and TaxBuddy often want unified filing history exports.
Quicko
Purpose-built for traders with auto-import of equity and F&O transactions; complementary when building a consolidated capital-gains data layer across brokers.
TaxSpanner
ERI-authorized platform operating since 2007 with video-assisted filing; commonly paired with TaxBuddy in accounting firms serving HNIs.
MyITreturn
Step-by-step guided filer with 10-minute acknowledgements; its structured ITR JSON is a close sibling of TaxBuddy's and useful for dual-source reconciliation.
Tax2win
Budget-friendly DIY and expert-assisted filer; relevant for consumer-facing neobanks that want a low-cost tax layer alongside richer TaxBuddy flows.
Aaykar Setu (official Income Tax Dept.)
Government pre-fill and verification rails; our integration layer talks to the same ITD APIs that power both Aaykar Setu and TaxBuddy.
IndiaFilings
Business-compliance suite covering GST, TDS and ROC filings; overlaps heavily with TaxBuddy's SME module on GSTIN and ROC data.
Vakilsearch
Legal + compliance platform for startups; their tax notice workflows pair naturally with TaxBuddy's notice-response APIs.

What we deliver

Deliverables checklist

  • OpenAPI 3.1 specification covering login, ITR, AIS, GST, refund, webhook
  • Protocol and auth flow report (OTP, OAuth, session refresh, signing)
  • Runnable source code (Python / Node.js / Go) with Docker compose
  • Postman collection + automated test suite (pytest / Jest)
  • DPDP / RBI / ITD-ERI compliance notes and retention policy template
  • Operations guide: rate limits, retry, observability, trace IDs

Engagement models

  • Source code delivery from $300 — you receive runnable API source code and full documentation; pay after delivery once you confirm acceptance tests pass.
  • Pay-per-call API billing — call our hosted TaxBuddy integration endpoints and pay per call only; no upfront fee, ideal for teams validating a use case.

Typical modules shipped

  • OAuth + OTP login and consent artefact handling
  • ITR filing history, refund tracker, Form 16 parser
  • AIS / TIS / 26AS sync and reconciliation
  • GSTR-1 / 3B, TDS / TCS and ROC compliance exports
  • Webhook dispatcher with HMAC signing and retry

About our studio

We are an independent technical services studio specializing in App interface integration and authorized API integration for fintech, tax and financial data apps. Our engineers have shipped OpenBanking / OpenFinance integrations for payment gateways, neobanks, wealth platforms and accounting SaaS across India, Southeast Asia and Europe.

  • Hands-on expertise in protocol analysis, interface refactoring and Open Data integration
  • Deep familiarity with Indian tax rails (ITD ERI APIs, DigiLocker, NSDL, GSTN)
  • Third-party API integration, automated data scripting and delivery of interface documentation
  • End-to-end pipeline: protocol analysis → build → validation → compliance → handover

Contact

To request a quote for a TaxBuddy integration or any other target app, share the app name and concrete requirements on our contact page.

Open contact page

Mention TaxBuddy, your target data types (e.g. ITR history, AIS, refund status) and preferred engagement model (source code or pay-per-call).

Engagement workflow

  1. Scope confirmation — integration scenarios, required data types, target regions.
  2. Protocol analysis & API design — 2–5 business days depending on complexity.
  3. Build and internal validation — 3–8 business days, including test data against sample PANs.
  4. Docs, samples, and test cases — 1–2 business days.
  5. Typical first delivery: 5–15 business days; ITD / GSTN approvals may extend timelines.

FAQ

What do you need from me?

The target app name (TaxBuddy, already provided), concrete data needs (ITR history, Form 16, AIS, GST, refund), and any partner credentials or sandbox access you already hold.

How long does delivery take?

Usually 5–12 business days for a first API drop and docs; white-label flows or multi-tenant deployments may take longer.

How do you handle compliance?

Authorized or documented APIs only, with consent artefacts, audit logs and data-minimization guidance aligned to DPDP 2023, RBI and ITD ERI rules; NDAs on request.

Do you support non-Indian clients?

Yes — we routinely ship Indian-data integrations to accounting SaaS and wealth platforms based in the EU, Singapore and the US, layering GDPR controls on top of DPDP.
Original app overview — TaxBuddy: Income Tax & Finance (click to expand)

TAXBUDDY is a trusted platform for income tax filing and ITR e-filing, simplifying tax filing for individuals, salaried employees, businesspersons, professionals, and SMEs. Whether you need to file ITR, track your ITR refund status, or get expert tax advice, TaxBuddy is your all-in-one solution. From income tax return filing to GST registration and TDS filing, TaxBuddy ensures accuracy and ease in managing your taxes.

Why choose TaxBuddy for income tax filing? Trusted by thousands for secure and accurate income tax e-filing; easy ITR filing with expert assistance and maximum refunds; secure income tax e-filing app with full encryption; real-time tracking of ITR refund status; manage advance tax and tax notices effortlessly; transparent pricing with no hidden fees.

Key services:

  • Income tax filing — expert-assisted ITR filing for accurate submissions, 24/7 post-filing support, free resolution of income tax notices for returns filed through TaxBuddy.
  • ITR filing app and tax notices — upload income tax notices for expert review, file responses directly through the ITR e-filing portal.
  • Tax planning and saving — generate detailed tax reports based on your investments, personalized tax-saving advice, plan and manage advance income tax payments.
  • TDS filing, GST registration and business services — TDS / TCS filing for businesses, hassle-free GST registration and filing, ROC filing and compliance for business owners.
  • Portfolio Doctor and Wealth Builder — analyze your investment portfolio, invest in no-commission mutual funds, review returns, and maximize gains.
  • Additional features — full-service GST compliance and advisory, business tax filing including advance income tax, statutory compliance services for startups.

Why TaxBuddy stands out: quick and accurate ITR filing to avoid penalties; one app for all tax services — filing, refund tracking and compliance; expert advice for advance tax, tax planning and notice resolution; simple, secure, easy-to-use platform.

Track your ITR refund status: track your ITR refund status in real-time. After filing your income tax return, use the app to get updates and ensure timely processing. TaxBuddy keeps you informed every step of the way.

ITR e-filing portal for simplified tax filing: the e-filing portal makes tax filing fast and secure. Whether you need help with advance income tax, tracking your ITR refund, or handling tax notices, TaxBuddy is designed to help.

Source & disclaimer: information is sourced from incometaxindia.gov.in. TaxBuddy does not represent any government entity and is not affiliated with the Income Tax Department of the Government of India.