Use the Company Insights Installed Tech API's endpoint to retrieve tech profile for a specific company.
Endpoint
GET https://api.insideview.com/api/v1/company/{companyId}/techProfile
Request
HTTP Headers
| Header Name | Type | Required | Description |
| accessToken | String | Yes |
Valid access token. |
| Accept | String | No | Selects the response's content type. Valid values are application/json and application/xml (default). |
URI Parameters
| Parameter Name | Type | Required | Description |
| companyId | Integer | Yes | A valid company ID |
Responses
Here are the major responses the API may return.
For details on the errors, see API Error Codes.
HTTP 200
Returns either a JSON or XML data structure depending on the request Accept header.
| Name | type | Description |
| categories | Array | Array of categories |
| categoriescategoryId | String | Category id |
| categoriescategoryName | String | Category Name |
| categoriessubCategories | Array | Array of Sub Categories |
| categoriessubCategoriessubCategoryId | String | Sub Category Id |
| categoriessubCategoriessubCategoryName | String | Sub category Name |
| categoriessubCategoriesproducts | Array | Array of products |
| categoriessubCategoriesproductsproductId | String | Product ID |
| categoriessubCategoriesproductsproductName | String | Product name |
application/json Example
{
"categories":[
{
"categoryId":"12",
"categoryName":"Security",
"subCategories":[
{
"subCategoryId":"5000507",
"subCategoryName":"Cloud Security Software",
"products":[
{
"productId":"DM17056",
"productName":"Amazon Guardduty"
},
{
"productId":"DM02130",
"productName":"Comendo"
{
"productId":"DM16863",
"productName":"Netskope"
},
}
]
}
]
}
]
"companyId": 726263
"currentCompanyId": 1755
}
application/xml Example
<?xml version="1.0" encoding="UTF-8"?>
<techProfile>
<categories>
<category>
<categoryId>12</categoryId>
<categoryName>Security</categoryName>
<subCategories>
<subCategory>
<products>
<product>
<productId>DM17056</productId>
<productName>Amazon Guardduty</productName>
</product>
<product>
<productId>DM02130</productId>
<productName>Comendo</productName>
</product>
<product>
<productId>DM16862</productId>
<productName>AWS Security Hub</productName>
</product>
<product>
<productId>DM16863</productId>
<productName>Netskope</productName>
</product>
</products>
<subCategoryId>5000507</subCategoryId>
<subCategoryName>Cloud Security Software</subCategoryName>
</subCategory>
</subCategories>
</category>
</categories>
<companyId>726263</companyId>
<currentCompanyId>1755</currentCompanyId>
</techProfile>
HTTP 400
Invalid query parameter(s).
HTTP 401
Unauthorized Error - Cannot use API's without setting a valid accessToken in header.
HTTP 405
Method Not Allowed - Your are not allowed to access this API.
HTTP 429
Request is throttled.