- October 24, 2022: Added
guids
,industry
,industry_slug
,in_portfolio
, &scope
parameters. - July 8, 2021: Updated
expand
parameter; Addeddetails
field to examples. - December 8, 2020: Added
expand
parameter.
https://api.bitsighttech.com/ratings/v1/companies/search
Search for a company in the Bitsight inventory by name or domain.
Parameters
❖ Either the domain
or name
parameter is required.
See query parameters for details on the following parameters:
limit
(Default:100
)offset
Parameter | Description | Values |
---|---|---|
domain❖
Query |
Search by domain name. | [String] The domain of a company.
Example:
|
expandQuery |
Include additional company information.
Using this parameter could slow the performance of the endpoint and will limit results to 10 companies. |
[String] details = Return additional company information. |
guidsQuery |
Search by company unique identifier.
This disables the |
[String] Company unique identifier [entity_guid ]. See GET: Portfolio Details. |
industryQuery |
Filter by industry. | [String] Industry name. |
industry_slugQuery |
Filter by industry. | [String] Industry slug name. |
in_portfolioQuery |
Filter by portfolio companies. | [Boolean] true = Limit results to only portfolio companies. |
name❖
Query |
Search by company name. | [String] The name of a company.
Example:
|
scopeQuery |
Filter by Security Performance Management and Benchmarking companies. | [String] spm |
Example Request
curl -u 'api_token:' 'https://api.bitsighttech.com/ratings/v1/companies/search?domain=saperix.com&expand=details'
Example Response
{ "links":{ "next":null, "previous":null }, "count":10, "results":[ […] { "guid":"819b6a11-d1c6-4518-9566-0611c34d5d8e", "name":"Saperix Hosting Service", "industry":"Technology", "industry_slug":"technology", "primary_domain":"saperix.com", "description":"Saperix Technologies LLC develops risk analysis software solutions.", "website":"http://saperix.com/hosting", "details":{ "is_bundled":false, "is_primary":false, "is_service_provider":false, "has_company_tree":true, "search_history_count":5143, "customer_monitoring_count":84, "self_published":"public", "confidence":"High", "logo":"https://api.bitsighttech.com/ratings/v1/companies/819b6a11-d1c6-4518-9566-0611c34d5d8e/logo-image", "in_portfolio":true, "search_token":"540H3GPGtrT-_T2WZ3m8vkn5TEzXumFwQCoYZGhLunUCCWo77BHf19Ik9XeWh0TbONQAI-9uJaVC7fdQee_vlRK28r_RDQM0MuSNHpHbUpV3btbfS3vkReJ7jirHGKud3t3J1CfxBMiyUp_N21Fv0Xh03itXMWXOQkCNjlvXFqghJbeXgIv5xgFhm8Ght2nn", "primary_company":null } } ] }
Response Attributes
Field | Description | |||
---|---|---|---|---|
linksObject |
Navigation for multiple pages of results. See pagination. | |||
nextString |
The URL for navigating to the next page of results. | |||
previousString |
The URL for navigating to the previous page of results. | |||
countInteger |
The amount of search results. | |||
resultsArray |
Company search results. | |||
Object | A company in the search results. | |||
guidString [ entity_guid ] |
The unique identifier of this company. | |||
nameString |
The name of this company. | |||
industryString |
This company’s industry. | |||
industry_slugString |
The slug name of this company’s industry. | |||
primary_domainString |
The main domain that belongs to this company. | |||
descriptionString |
A description of this company and its purpose. | |||
websiteString |
The web address (URL) to this company’s primary domain. | |||
detailsObject |
If the expand parameter is set to details (&expand=details ), these company details are included. |
|||
is_bundledBoolean |
true = This company is part of a ratings bundle. |
|||
is_primaryBoolean |
true = This company is designated as the primary, which the publisher believes is the most accurate indication of their security posture. |
|||
is_service_providerBoolean |
true = This company is a service provider. |
|||
has_company_treeBoolean |
true = This company has a Ratings Tree. |
|||
search_history_countInteger |
The number of times this company has appeared in searches. | |||
customer_monitoring_countInteger |
The number of companies that are currently monitoring this company. | |||
self_publishedString |
Indicates if this self-published report is public or private . |
|||
confidenceString |
The level of confidence in the quality of the company data.
|
|||
logoString |
The URL path of this company’s logo image in the Bitsight platform. | |||
in_portfolioBoolean |
true = This company is in your portfolio. |
|||
search_tokenString |
An auto-generated unique identifier for this search. | |||
primary_companyString |
The name of the primary designated for this company’s organization. |