Authorized protocol analysis and OpenFinance-aligned API delivery for TaxBuddy: Income Tax & Finance (com.taxbuddy.gst)
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.
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.
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.
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.
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.
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.
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.
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.
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 type | Source (screen / feature) | Granularity | Typical use |
|---|---|---|---|
| ITR filings list | My Returns → Filing history | Per assessment year, per ITR form | Income verification, KYC enrichment, wealth onboarding |
| Form 16 / salary data | Upload Form 16 → AI parser | Per quarter, per employer | Lending underwriting, payroll reconciliation |
| AIS / TIS entries | AIS viewer inside ITR flow | Per transaction / per category | Tax reconciliation, high-value transaction monitoring |
| Form 26AS | Pre-fill screen | Per TDS entry, per deductor TAN | TDS credit verification, advance tax planning |
| Capital gains ledger | Capital Gains importer | Per scrip / per lot, STCG vs LTCG | Broker integration, portfolio tax optimization |
| Refund status | Refund tracker screen | Per PAN, per AY, status-code level | Real-time dashboards, SMS / push notifications |
| GST filings (GSTR-1 / 3B) | GST module | Per GSTIN, per return period | ERP ITC reconciliation, SME compliance |
| TDS / TCS returns | TDS filing workspace | Per deductee, per quarter | Deductor audit logs, quarterly compliance |
| Portfolio Doctor analytics | Portfolio Doctor | Per holding, per asset class | Robo-advisory feeds, rebalance triggers |
| Tax notices & responses | Notice inbox | Per DIN (Document ID Number) | Notice-management SaaS, CA firm dashboards |
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.
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.
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.
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.
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.
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"]
}
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
}
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.
// 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
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.
itr.read only, no ais.read) so partners receive exactly the fields they need.A typical deployment follows four stages: Client app / partner backend → Our 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.
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.
Official TaxBuddy screens. Click any thumbnail to view a larger version.
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.
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.
To request a quote for a TaxBuddy integration or any other target app, share the app name and concrete requirements on our 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).
What do you need from me?
How long does delivery take?
How do you handle compliance?
Do you support non-Indian clients?
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:
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.