ALERT The IRS will be down for maintenance from May 04, 2025 1:00 AM ET to 7:00 AM ET. All other validations will be processed normally.

API Endpoint: Company Name Lookup by EIN

https://www.tincomply.com/api/v1/validate/company-name-lookup-by-ein

The company-name-lookup-by-ein endpoint retrieves the registered business name associated with a provided Employer Identification Number (EIN).


Supported Parameters

The following parameter is required for a request:

  • tin – The Employer Identification Number (EIN) of the company.

Response Object

The response object is companyNameLookupByEinResult, which contains the following property:

Property Description
name The official registered name of the company (if found).

If the EIN is valid and registered, the API returns the matching business name.


Sample Request

{
    "tin": "130871985"
}

Response:

{
    "id": "YZaaP7ZTTZOkce9mEYxdZQsh",
    "request": {
        "tin": "XXXXX1985",
        "requestDate": "2025-02-20T01:18:37Z",
        "requestedServices": "company-name-lookup-by-ein"
    },
    "companyNameLookupByEinResult": {
        "name": "INTERNATIONAL BUSINESS MACHINES CORPORATION",
        "message": "EIN lookup match found",
        "found": true,
        "completed": true
    }
}