Try Quicko Connect in Postman

Overview
Open APIs allow “Connect” partners to access a variety of tax-related data through secure, consent-based endpoints.User Details
Retrieve verified identity of the user, such as name, email, and mobile number.
Tax Payer
Access high-level details about user demographics, including PAN, name, DOB, age as per PAN, category, residential status.
ITR Details
Get metadata about Income Tax Returns, such as filing status, type of ITR filed, due dates, and acknowledgment number.
Tax Computation
Fetch computation of income and tax including income by heads, demat accounts, bank accounts, personal assets and liabilities.
Advisory Orders
Access user’s advisory service orders and their status.
Available Endpoints
Get User Details
Get User Details
Endpoint:
GET /entitlements/userRetrieve verified identity information of the user.Returns:- Name (first name, last name)
- Email address
- Mobile number
- User ID
- Account status
- Creation date
- Verify user identity
- Pre-fill application forms
- Personalize user experience
Get Taxpayer
Get Taxpayer
Endpoint:
GET /income-tax/tax-payerAccess comprehensive demographic and tax-related information.Returns:- PAN number
- Full name as per PAN
- Date of birth
- PAN holder type (individual, HUF, etc.)
- Filing category (general, senior citizen, etc.)
- Residential status (resident, non-resident, etc.)
- Contact details (address, email, mobile)
- KYC verification
- Age-based product recommendations
- Residential status-based tax planning
Get ITR Details
Get ITR Details
Endpoint:
GET /income-tax/tax-payer/itrGet metadata about the user’s Income Tax Returns.Returns:- Assessment year
- ITR form type (ITR-1, ITR-2, etc.)
- Tax regime (old/new)
- Filing status (filed, in_progress, etc.)
- Filing type (original, revised, belated)
- Due date and filed date
- Acknowledgement number
- E-verification details
- Check tax filing compliance
- Identify tax regime preference
- Verify ITR filing status
Get Tax Computation
Get Tax Computation
Endpoint:
GET /income-tax/tax-payer/itr/computation-of-taxFetch computation of income and tax liability.Returns:- Income by heads:
- Salary income
- House property income
- Capital gains (STCG, LTCG)
- Business & profession income
- Other sources
- Chapter VI-A deductions
- Total taxable income
- Tax payable/refundable
- Interest and penalties (234A, 234B, 234C, 234F)
- TDS and advance tax paid
- Tax liability assessment
- Investment planning recommendations
- Tax saving opportunities identification
Get Advisory Orders
Get Advisory Orders
Endpoint:
GET /advisory/contacts/{contact_id}/ordersAccess user’s advisory service orders.Returns:- Order ID and status
- Order creation and update timestamps
- Order pricing details
- GST amount
- Order resolution details
- Track advisory service usage
- Service billing and reconciliation
Authorization
Open APIs require an
Authorization header with the JWT access token obtained through the OAuth flow.| Header | Description | Required |
|---|---|---|
Authorization | Resource Owner’s JWT access token (obtained via OAuth) | Yes |
x-api-key | Your API User Key (provided during onboarding) | Yes |
Example Request
cURL
Node.js
Python
Try APIs in API Reference
Explore and test all Open APIs with detailed request/response examples, schemas, and live API playground.
Getting Started
Authenticate Your Application
Use the Authenticate API to get your application’s access token.
Implement OAuth Flow
Follow the OAuth guide to get user consent and obtain Resource Owner tokens.
Try it with Postman
Download our Postman collection to test the APIs quicklyQuicko Connect Postman Collection →
Recommendations
Understand the Endpoints
Familiarize yourself with each API endpoint, its purpose, and how it fits into the services you offer.
Know Request & Response Structures
Each API has specific request parameters and response data formats. Understanding these ensures seamless integration.
Handle Data with Care
Handle and store user information securely and in compliance with data privacy and protection guidelines (GDPR, DPDPA, etc.).
Maintain User Consent
Ensure ongoing consent from users to access their data. Provide clear options to revoke access if desired.
Data Privacy & Security
Obtain Explicit Consent
Always obtain explicit user consent before accessing their data through the OAuth flow.
Encrypt Data at Rest and in Transit
Use industry-standard encryption (AES-256, TLS 1.2+) for storing and transmitting data.
Implement Access Controls
Restrict data access to only authorized personnel and systems. Use role-based access control (RBAC).
Comply with Regulations
Ensure compliance with:
- Digital Personal Data Protection Act (DPDPA), 2023
- GDPR (for EU users)
- Other applicable data protection laws
Provide User Rights
Allow users to:
- View what data you’ve accessed
- Revoke access at any time
- Request data deletion
Rate Limiting
API rate limits ensure fair usage and system stability. Current limits are subject to your service agreement.
429 Too Many Requests response. Implement exponential backoff and retry logic in your application.
Error Handling
Open APIs return standard HTTP status codes and error responses:| Status Code | Meaning |
|---|---|
200 | Success |
400 | Bad Request - Invalid parameters |
401 | Unauthorized - Invalid or expired token |
403 | Forbidden - Insufficient permissions |
404 | Not Found - Resource doesn’t exist |
429 | Too Many Requests - Rate limit exceeded |
500 | Internal Server Error |