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 Details Lookup by Name Address

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

This endpoint searches for company details based on a provided name and/or address.


Supported Parameters

  • name – The company name to search for. (Required)
  • suite – Suite or unit number (if applicable).
  • street – The street address of the company.
  • city – The city where the company is located.
  • state – The state abbreviation (e.g., NY, CA).
  • zip5 – The 5-digit ZIP code.

Response Object

The response object companyDetailsLookupByNameAddressResult returns a list of matching companies with the various details:


Sample Request

{
    "name": "Apple",
    "street": "One Apple Park Way",
    "suite": "",
    "city": "Cupertino",
    "state": "CA",
    "zip5": "95014"
}

Sample Response

{
    "id": "ZqX9VaaTXkeLKp9CSafktQBw",
    "request": {
        "name": "APPLE",
        "street": "ONE APPLE PARK WAY",
        "suite": "",
        "city": "CUPERTINO",
        "state": "CA",
        "zip5": "95014",
        "matchThreshold": 65,
        "requestDate": "2025-02-20T05:33:35Z",
        "requestedServices": "company-details-lookup-by-name-address"
    },
    "companyDetailsLookupByNameAddressResult": {
        "completed": true,
        "anyFiltered": false,
        "results": [
            {
                "name": "Apple Park",
                "type": "Organization",
                "confidence": 100,
                "properties": {
                    "names": "APPLE PARK",
                    "address": "1 APPLE PARK WAY, CUPERTINO, CA 95014-0642",
                    "country": "United States",
                    "latitude": "37.33415",
                    "longitude": "-122.01178",
                    "phonenumbers": "(408) 996-1010",
                    "relatedWebsites": "http://www.apple.com"
                }
            }
        ]
    }
}