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.
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.The response object companyDetailsLookupByNameAddressResult
returns a list of matching companies with the various details:
{ "name": "Apple", "street": "One Apple Park Way", "suite": "", "city": "Cupertino", "state": "CA", "zip5": "95014" }
{ "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" } } ] } }