Skip to content

Business Report

The Business Report API is the second step in the Trust2Connect “list of similar” workflow. After identifying a potential business match using the Business Search API, use this endpoint to retrieve a comprehensive, detailed report for a specific business entity.

Fetch in-depth Business Profile Report for a single business entity, identified by its unique Trust2Connect ID (t2c_id). A valid session_id from a previous search request is required to ensure the report request is authorized and recent. The report includes government filings, website data, and other private information.

GET

GET https://api.trust2connect.ai/api/v1/search?session_id={active_session_id}&t2c_id={t2c_id_for_report_fetch}
HeaderRequiredValueDescription
AuthorizationYesBearer t2c_access_tokenOAuth 2.0 access token. Replace with the token from the Get Access Token endpoint
X-Search-OptionYeslist-of-similarConfirms the t2c_id is from a “list of similar” search, linking the report to the original search
Query ParamRequiredDescription
session_idYesThe unique session_id from the Business Search API response. Valid for a limited time (default: 8 hours)
t2c_idYesThe Trust2Connect ID for the business entity. Must be from your previous Business Search API results.
curl --location 'https://api.trust2connect.ai/api/v1/search?session_id=<active_session_id>&t2c_id=<t2c_id_for_report_fetch>' \
--header 'Authorization: Bearer uYCma6Si7T1rm7LArasFFl3bqvv2' \
--header 'X-Search-Option: list-of-similar'

The T2C API provides a response based on the product you’ve subscribed to: T2C Basic, T2C Plus, or T2C Plus Score. The structure and content of the response will vary depending on your subscription.

  • Executive Summary: This section offers a concise overview of the business entity, including its core activities, structure, and location details.

  • Business Signature: This section includes a detailed breakdown of the matching score. It shows how different attributes, such as “Business Name,” “Address,” and “Statecode,” matched with what was searched. The confidence_score is not available in the T2C Plus response and is only available with T2C Plus Score.

  • Controlling Party: Lists the owners, partners, and executives of the business, along with their contact information.

  • Government: This section provides extensive information from governmental sources, such as the company’s business structure, legal structure, incorporation date, NAICS and SIC codes, and tax identification details.

  • Web: This section contains information gathered from the web, including website details, WHOIS information, and reviews from platforms like Yelp, Google, and BBB.

  • Parent Status: The corporate relationship of the entity (e.g., “Ultimate Parent”, “Parent and Child”, “Child”, “Sole”).

  • Status: The operational status of the entity (e.g., “Active”, “Inactive”).

  • T2C ID: The unique T2C identifier.

    FeatureT2C BasicT2C PlusT2C Plus Score
    Executive Summary
    Controlling Party Information
    Government Data
    Web Data (WHOIS, Reviews)
    Detailed Match Scores
    Confidence Score

The T2C Basic response provides essential information about a matched entity.

Show Example Response for T2C Basic
{
"report": {
"business_signature": {},
"controlling_party": [],
"executive_summary": {
"about_us": {
"business_activities_primary": [
"Landscaping Services"
],
"business_activities_secondary": [],
"company_name": "CHALET LANDSCAPE CO",
"corporate_structure": "This company is a sole entity, operating as a corporation and a single-entity organization.",
"established_year": "1966",
"naics_code": "561730",
"one_line_summary": "CHALET LANDSCAPE CO is an active corporation established in 1966, operating as a single-entity organization in the landscaping services industry.",
"primary_industry": "Landscaping Services",
"primary_location": "Wilmette, Illinois",
"status_indicator": "Active"
},
"business_address": {
"addressLineOne": "3132 Lake Ave",
"addressLineTwo": null,
"city": "Wilmette",
"country": "US",
"county": "Cook County",
"location": {
"latitude": "42.079540000000001",
"longitude": "-87.753479999999996"
},
"state": "Illinois",
"stateCode": "IL",
"zipCode": "60091"
},
"business_name": "CHALET LANDSCAPE CO",
"display_name": "CHALET LANDSCAPE CO",
"legal_address": {
"addressLineOne": "191 N Wacker Dr Ste 1800",
"addressLineTwo": null,
"city": "Chicago",
"country": "US",
"county": "Cook County",
"location": {
"latitude": "41.885530000000003",
"longitude": "-87.636700000000005"
},
"state": "Illinois",
"stateCode": "IL",
"zipCode": "60606"
},
"legal_name": "CHALET LANDSCAPE CO"
},
"government": {},
"parent_status": "Sole",
"status": "Active",
"t2c_id": "2a4256c0-e469-4351-acbb-ca2b6383e525",
"web": {}
},
"session_id": "5b23b20c-e6a4-4de8-a612-a028392bed34",
"status": "success",
"transaction_id": "99d55a21-b9dc-4954-b166-04aee0971ac0"
}

The T2C Plus response includes all the information from the T2C Basic response, with the addition of more detailed data from government and web sources. The T2C Plus sample below demonstrates what’s included.

Show Example Response for T2C Plus
{
"report": {
"business_signature": {
"kyb_score": {},
"match_score": {
"matchType": [
{
"attribute": "Business Name",
"scores": {
"Business": {
"matchType": "Low",
"score": 72.5
},
"Government": {
"matchType": "Low",
"score": 72.5
},
"Site_Inspection": {
"matchType": "N/A",
"score": "N/A"
},
"Web": {
"matchType": "Low",
"score": 72.5
}
}
},
{
"attribute": "Address",
"scores": {
"Business": {
"matchType": "High",
"score": 100.0
},
"Government": {
"matchType": "Low",
"score": 47.04
},
"Site_Inspection": {
"matchType": "N/A",
"score": "N/A"
},
"Web": {
"matchType": "Low",
"score": 30.08
}
}
},
{
"attribute": "City",
"scores": {
"Business": {
"matchType": "High",
"score": 100.0
},
"Government": {
"matchType": "Low",
"score": 42.48
},
"Site_Inspection": {
"matchType": "N/A",
"score": "N/A"
},
"Web": {
"matchType": "Low",
"score": 28.53
}
}
},
{
"attribute": "Statecode",
"scores": {
"Business": {
"matchType": "High",
"score": 100.0
},
"Government": {
"matchType": "High",
"score": 100.0
},
"Site_Inspection": {
"matchType": "N/A",
"score": "N/A"
},
"Web": {
"matchType": "High",
"score": 100.0
}
}
},
{
"attribute": "Zip Code",
"scores": {
"Business": {
"matchType": "High",
"score": 100.0
},
"Government": {
"matchType": "Low",
"score": 33.33
},
"Site_Inspection": {
"matchType": "N/A",
"score": "N/A"
},
"Web": {
"matchType": "Low",
"score": 51.11
}
}
}
]
}
},
"controlling_party": [],
"executive_summary": {
"about_us": {
"business_activities_primary": [
"Landscaping Services"
],
"business_activities_secondary": [],
"company_name": "CHALET LANDSCAPE CO",
"corporate_structure": "Sole proprietorship. Business Structure: Sole",
"established_year": "1966",
"naics_code": "561730",
"one_line_summary": "CHALET LANDSCAPE CO, established in 1966, is an active sole proprietorship providing landscaping services, located at 3132 Lake Ave, Wilmette, Illinois, US.",
"primary_industry": "Landscaping Services",
"primary_location": "3132 Lake Ave, Wilmette, Illinois, US",
"status_indicator": "Active"
},
"business_address": {
"addressLineOne": "3132 Lake Ave",
"addressLineTwo": null,
"city": "Wilmette",
"country": "US",
"county": "Cook County",
"location": {
"latitude": "42.079540000000001",
"longitude": "-87.753479999999996"
},
"state": "Illinois",
"stateCode": "IL",
"zipCode": "60091"
},
"business_name": "CHALET LANDSCAPE CO",
"display_name": "CHALET LANDSCAPE CO",
"legal_address": {
"addressLineOne": "191 N Wacker Dr Ste 1800",
"addressLineTwo": null,
"city": "Chicago",
"country": "US",
"county": "Cook County",
"location": {
"latitude": "41.885530000000003",
"longitude": "-87.636700000000005"
},
"state": "Illinois",
"stateCode": "IL",
"zipCode": "60606"
},
"legal_name": "CHALET LANDSCAPE CO"
},
"government": {
"selected_entity": {
"all_names": [
"CHALET LANDSCAPE CO",
"CHALET LANDSCAPE",
"CHALET LANDSCAPE CO",
"CHALET",
"CHALET NURSERY"
],
"business_address": {
"addressLineOne": "3132 Lake Ave",
"addressLineTwo": null,
"city": "Wilmette",
"country": "US",
"county": "Cook County",
"location": {
"latitude": "42.079540000000001",
"longitude": "-87.753479999999996"
},
"state": "Illinois",
"stateCode": "IL",
"zipCode": "60091"
},
"business_name": "CHALET LANDSCAPE CO",
"business_structure": "Single-entity organization",
"business_type": "Employer",
"current_status": "Active",
"incorporation_date": "1966-09-22",
"irs": {
"irsIndustryCodes": "561730",
"irsIndustryCodesAll": "561730",
"irsIndustryNames": "Landscaping Services",
"irsIndustryNamesAll": "Landscaping Services",
"irsSectorCode": "56",
"irsSectorName": "Administrative and Support and Waste Management and Remediation Services",
"irsSubsectorCode": "5610",
"irsSubsectorName": "Administrative and Support Services"
},
"is_company_ofac": "No",
"is_non_profit": "No",
"jurisdiction_state": "IL",
"legal_address": {
"addressLineOne": "191 N Wacker Dr Ste 1800",
"addressLineTwo": null,
"city": "Chicago",
"country": "US",
"county": "Cook County",
"location": {
"latitude": "41.885530000000003",
"longitude": "-87.636700000000005"
},
"state": "Illinois",
"stateCode": "IL",
"zipCode": "60606"
},
"legal_name": "CHALET LANDSCAPE CO",
"legal_structure": "Corporation",
"naics": {
"naicsCode": "561730",
"naicsCodesAll": "561730",
"naicsName": "Landscaping Services",
"naicsNamesAll": "Landscaping Services",
"naicsSectorCode": "56",
"naicsSectorName": "Administrative and Support and Waste Management and Remediation Services"
},
"no_of_employees": "181",
"phone": "",
"registration_number": "CORP_46935187",
"report_date": "2025-09-30",
"revenue": "27955660",
"sic_codes": {
"sicCode": "0782",
"sicCodesAll": "0782; 0783",
"sicName": "Lawn and Garden Services",
"sicNamesAll": "Lawn and Garden Services; Ornamental Shrub and Tree Services",
"sicSectorCode": "07",
"sicSectorCodesAll": "07",
"sicSectorName": "Agricultural services",
"sicSectorNamesAll": "Agricultural services"
},
"standardized_status": "Active",
"tax_id": {},
"years_in_business": 60
}
},
"parent_status": "Sole",
"status": "Active",
"t2c_id": "3c4a533f-18e3-4848-a324-3cf902f20822",
"web": {
"association_ratings": {
"bbb": {
"accreditation": "Yes, since 3/1/2007",
"accreditation_since": "N/A",
"rating": "N/A",
"review_count": "N/A"
}
},
"general_information": {
"address": {
"addressLineOne": "3132 Lake Ave",
"addressLineTwo": null,
"city": "Wilmette",
"country": "US",
"state": "Illinois",
"stateCode": "IL",
"type_of_address": "Head Quarter",
"zipCode": "60091"
},
"company_name": "CHALET LANDSCAPE CO",
"controling_parties": [
{
"name": "Edwin Grevers",
"role": "Principal"
},
{
"name": "Kevin Marko",
"role": "Division Manager"
},
{
"name": "Lawrence Thalmann III",
"role": "President"
},
{
"name": "Keith Louffler",
"role": "CFO"
},
{
"name": "Michi Kustra",
"role": "Chief Marketing Officer"
}
],
"domain": "www.chaletnursery.com",
"naics": [
"561730: Landscaping Services"
],
"other_names": [
"Chalet Landscape Co: Chalet Nursery"
],
"phone": "N/A",
"revenue": "$124000000",
"website": "www.chaletnursery.com",
"whois_information": {
"WHOIS_Server": "whois.networksolutions.com",
"administrative_contact_email": "N/A",
"administrative_contact_name": "N/A",
"administrative_contact_number": "N/A",
"creation_date": "11-28-1997",
"domain_name": "CHALETNURSERY.COM",
"expiration_date": "11-27-2029",
"name_servers": [
"NS23.WORLDNIC.COM",
"NS24.WORLDNIC.COM"
],
"registrant_email": "domain.operations@web.com",
"registrant_name": null,
"registrant_phone": "N/A",
"registrar": "Network Solutions, LLC",
"status": "clientTransferProhibited https://icann.org/epp#clientTransferProhibited",
"updated_date": "09-30-2024"
},
"years_in_business": 108
},
"reviews": [
{
"average_rating": "N/A",
"platform": "Yelp",
"total_no_reviews": "N/A"
},
{
"average_rating": "N/A",
"platform": "Google",
"total_no_reviews": "N/A"
},
{
"average_rating": "N/A",
"platform": "BBB",
"total_no_reviews": "N/A"
}
]
}
},
"session_id": "57508364-410e-4aaf-b36f-a433eb26e630",
"status": "success",
"transaction_id": "04aee99d-b166-b9dc-4954-04aee99d55a21"
}

The T2C Plus Score response is the most comprehensive. It contains all the data from the T2C Plus response and adds a kyb scoring section for a confidence score for the KYB (Know Your Business) assessment.

Show Example Response for T2C Plus Score
{
"report": {
"business_signature": {
"kyb_score": {
"confidence_score": "100"
},
"match_score": {
"matchType": [
{
"attribute": "Business Name",
"scores": {
"Business": {
"matchType": "Low",
"score": 72.5
},
"Government": {
"matchType": "Low",
"score": 72.5
},
"Site_Inspection": {
"matchType": "N/A",
"score": "N/A"
},
"Web": {
"matchType": "Low",
"score": 72.5
}
}
},
{
"attribute": "Address",
"scores": {
"Business": {
"matchType": "High",
"score": 100.0
},
"Government": {
"matchType": "Low",
"score": 47.04
},
"Site_Inspection": {
"matchType": "N/A",
"score": "N/A"
},
"Web": {
"matchType": "Low",
"score": 30.08
}
}
},
{
"attribute": "City",
"scores": {
"Business": {
"matchType": "High",
"score": 100.0
},
"Government": {
"matchType": "Low",
"score": 42.48
},
"Site_Inspection": {
"matchType": "N/A",
"score": "N/A"
},
"Web": {
"matchType": "Low",
"score": 28.53
}
}
},
{
"attribute": "Statecode",
"scores": {
"Business": {
"matchType": "High",
"score": 100.0
},
"Government": {
"matchType": "High",
"score": 100.0
},
"Site_Inspection": {
"matchType": "N/A",
"score": "N/A"
},
"Web": {
"matchType": "High",
"score": 100.0
}
}
},
{
"attribute": "Zip Code",
"scores": {
"Business": {
"matchType": "High",
"score": 100.0
},
"Government": {
"matchType": "Low",
"score": 33.33
},
"Site_Inspection": {
"matchType": "N/A",
"score": "N/A"
},
"Web": {
"matchType": "Low",
"score": 51.11
}
}
}
]
}
},
"controlling_party": [],
"executive_summary": {
"about_us": {
"business_activities_primary": [
"Landscaping Services"
],
"business_activities_secondary": [],
"company_name": "CHALET LANDSCAPE CO",
"corporate_structure": "This company operates as a sole proprietorship.",
"established_year": "1966",
"naics_code": "561730",
"one_line_summary": "CHALET LANDSCAPE CO, established in 1966, is an active sole proprietorship providing Landscaping Services, with the primary location at 3132 Lake Ave, Wilmette, Illinois, US.",
"primary_industry": "Landscaping Services",
"primary_location": "3132 Lake Ave, Wilmette, Illinois, US",
"status_indicator": "Active"
},
"business_address": {
"addressLineOne": "3132 Lake Ave",
"addressLineTwo": null,
"city": "Wilmette",
"country": "US",
"county": "Cook County",
"location": {
"latitude": "42.079540000000001",
"longitude": "-87.753479999999996"
},
"state": "Illinois",
"stateCode": "IL",
"zipCode": "60091"
},
"business_name": "CHALET LANDSCAPE CO",
"display_name": "CHALET LANDSCAPE CO",
"legal_address": {
"addressLineOne": "191 N Wacker Dr Ste 1800",
"addressLineTwo": null,
"city": "Chicago",
"country": "US",
"county": "Cook County",
"location": {
"latitude": "41.885530000000003",
"longitude": "-87.636700000000005"
},
"state": "Illinois",
"stateCode": "IL",
"zipCode": "60606"
},
"legal_name": "CHALET LANDSCAPE CO"
},
"government": {
"selected_entity": {
"all_names": [
"CHALET LANDSCAPE CO",
"CHALET LANDSCAPE",
"CHALET LANDSCAPE CO",
"CHALET",
"CHALET NURSERY"
],
"business_address": {
"addressLineOne": "3132 Lake Ave",
"addressLineTwo": null,
"city": "Wilmette",
"country": "US",
"county": "Cook County",
"location": {
"latitude": "42.079540000000001",
"longitude": "-87.753479999999996"
},
"state": "Illinois",
"stateCode": "IL",
"zipCode": "60091"
},
"business_name": "CHALET LANDSCAPE CO",
"business_structure": "Single-entity organization",
"business_type": "Employer",
"current_status": "Active",
"incorporation_date": "1966-09-22",
"irs": {
"irsIndustryCodes": "561730",
"irsIndustryCodesAll": "561730",
"irsIndustryNames": "Landscaping Services",
"irsIndustryNamesAll": "Landscaping Services",
"irsSectorCode": "56",
"irsSectorName": "Administrative and Support and Waste Management and Remediation Services",
"irsSubsectorCode": "5610",
"irsSubsectorName": "Administrative and Support Services"
},
"is_company_ofac": "No",
"is_non_profit": "No",
"jurisdiction_state": "IL",
"legal_address": {
"addressLineOne": "191 N Wacker Dr Ste 1800",
"addressLineTwo": null,
"city": "Chicago",
"country": "US",
"county": "Cook County",
"location": {
"latitude": "41.885530000000003",
"longitude": "-87.636700000000005"
},
"state": "Illinois",
"stateCode": "IL",
"zipCode": "60606"
},
"legal_name": "CHALET LANDSCAPE CO",
"legal_structure": "Corporation",
"naics": {
"naicsCode": "561730",
"naicsCodesAll": "561730",
"naicsName": "Landscaping Services",
"naicsNamesAll": "Landscaping Services",
"naicsSectorCode": "56",
"naicsSectorName": "Administrative and Support and Waste Management and Remediation Services"
},
"no_of_employees": "181",
"phone": "",
"registration_number": "CORP_46935187",
"report_date": "2025-09-30",
"revenue": "27955660",
"sic_codes": {
"sicCode": "0782",
"sicCodesAll": "0782; 0783",
"sicName": "Lawn and Garden Services",
"sicNamesAll": "Lawn and Garden Services; Ornamental Shrub and Tree Services",
"sicSectorCode": "07",
"sicSectorCodesAll": "07",
"sicSectorName": "Agricultural services",
"sicSectorNamesAll": "Agricultural services"
},
"standardized_status": "Active",
"tax_id": {
"company_ein": null,
"company_ein_formatted": null,
"company_eins_related": null,
"company_eins_related_formatted": null,
"company_sec_ein": null
},
"years_in_business": 60
}
},
"parent_status": "Sole",
"status": "Active",
"t2c_id": "3c4a533f-18e3-4848-a324-3cf902f20822",
"web": {
"association_ratings": {
"bbb": {
"accreditation": "Yes, since 3/1/2007",
"accreditation_since": "N/A",
"rating": "N/A",
"review_count": "N/A"
}
},
"general_information": {
"address": {
"addressLineOne": "3132 Lake Ave",
"addressLineTwo": null,
"city": "Wilmette",
"country": "US",
"state": "Illinois",
"stateCode": "IL",
"type_of_address": "Head Quarter",
"zipCode": "60091"
},
"company_name": "CHALET LANDSCAPE CO",
"controling_parties": [
{
"name": "Edwin Grevers",
"role": "Principal"
},
{
"name": "Kevin Marko",
"role": "Division Manager"
},
{
"name": "Lawrence Thalmann III",
"role": "President"
},
{
"name": "Keith Louffler",
"role": "CFO"
},
{
"name": "Michi Kustra",
"role": "Chief Marketing Officer"
}
],
"domain": "www.chaletnursery.com",
"naics": [
"561730: Landscaping Services"
],
"other_names": [
"Chalet Landscape Co: Chalet Nursery"
],
"phone": "N/A",
"revenue": "$124000000",
"website": "www.chaletnursery.com",
"whois_information": {
"WHOIS_Server": "whois.networksolutions.com",
"administrative_contact_email": "N/A",
"administrative_contact_name": "N/A",
"administrative_contact_number": "N/A",
"creation_date": "11-28-1997",
"domain_name": "CHALETNURSERY.COM",
"expiration_date": "11-27-2029",
"name_servers": [
"NS23.WORLDNIC.COM",
"NS24.WORLDNIC.COM"
],
"registrant_email": "domain.operations@web.com",
"registrant_name": null,
"registrant_phone": "N/A",
"registrar": "Network Solutions, LLC",
"status": "clientTransferProhibited https://icann.org/epp#clientTransferProhibited",
"updated_date": "09-30-2024"
},
"years_in_business": 108
},
"reviews": [
{
"average_rating": "N/A",
"platform": "Yelp",
"total_no_reviews": "N/A"
},
{
"average_rating": "N/A",
"platform": "Google",
"total_no_reviews": "N/A"
},
{
"average_rating": "N/A",
"platform": "BBB",
"total_no_reviews": "N/A"
}
]
}
},
"session_id": "57508364-410e-4aaf-b36f-a433eb26e630",
"status": "success",
"transaction_id": "04aee99d-b166-b9dc-4954-04aee99d55a21"
}
  • transaction_id is a unique identifier generated for every request.