For the complete documentation index, see llms.txt. This page is also available as Markdown.

TIN Verification

This API retrieves and verifies business information using a valid Taxpayer Identification Number (TIN). It provides key details such as registration status, registration date, associated PAN, owner information, and business address, enabling efficient business verification and compliance checks.

tin_verification

POST https://secctrl.tutelar.io/api/v1/services/business_profile/tin_verification

Sample Request Body

Body
Type
Mandatory
Description

tinNumber

string

Yes

TIN Number

Sample Post Parameters

{
    "tinNumber": "07640352230"
}
{
    "success": true,
    "code": 200,
    "message": "The request has been successfully completed.",
    "reference_id": "bed41e00-304f-4c84-a807-d3a71fe3f553",
    "status": "completed",
    "result": {
        "cstStatus": "",
        "pan": "",
        "status": "Registered",
        "ownerName": "",
        "splitAddress": {
            "district": [],
            "state": [],
            "city": [],
            "pincode": "",
            "country": [],
            "addressLine": ""
        }
    },
    "requested_at": "2026-06-04T05:38:53.350Z",
    "completed_at": "2026-06-04T05:38:53.903Z"
}

Get details

GET https://secctrl.tutelar.io/api/v1/services/business_profile/tin_verification

Query parameters description is given below,

Query Parameter
Type
Is Mandatory
Description

reference_id

String

Yes

Document reference id

Last updated