SalesIntel API Documentation
  • Getting Started with SalesIntel APIs
    • Rate Limits
    • OpenAPI/Swagger Playground
    • Use Cases
      • A Note on Data Quality Tiers
  • Company APIs
  • People (Contact) APIs
    • A Note on Contact Locations
  • Technographic APIs
  • News APIs
  • Webhooks and Export Apps
    • Creating an Export App
    • The Export Webhook
    • Testing Your App
    • Troubleshooting Your Integration
Powered by GitBook
On this page
  • Append tech stack details to identified companies
  • Query Parameters
  • Headers
  • Response
  • Retrieve the category/subcategory technology taxonomy
  • Headers
  • Response
  • Retrieve the product/vendor technology taxonomy
  • Query Parameters
  • Headers
  • Response

Technographic APIs

PreviousA Note on Contact LocationsNextNews APIs

Last updated 9 days ago

Use the API playground at to test the API request and response patterns

Append tech stack details to identified companies

GET https://api.salesintel.io/service/technologies/append

You can use this API to append 1-to-n technologies to a set of companies, specified by domain (recommended) or company name. The number of technologies that can be appended in a single request is based on your plan. Credits are consumed based on the number of companies returned, whether the company uses the requested technologies or not.

Technologies must be specified using the syntax found in the SalesIntel taxonomy, which can also be accessed via APIs. There is no charge to hit the taxonomy APIs.

The response set is paginated, with up to 50 records per page. You are charged credits based on the number of records on the pages accessed. If you only retrieve the first page of results out of 10, at a page size of 50, you will be charged for 50 records. The page size is adjustable.

Query Parameters

Name
Type
Description

company_domain

String

Comma-separated list of domains

company_name

String

Comma-separated list of names; names are not case-sensitive and are matched using "contains"

is_international

Boolean

Company is located in the US (false) or outside of the US (true). Without this parameter, you may return multiples of the same organization based in different countries

tech_category

String

tech_subcategory

String

tech_product

String

tech_vendor

String

verified

Boolean

Company details are human verified (true) or machine verified (false). Without this parameter, you may return multiples of the same organization

page

Integer

Page number

page_size

Integer

If not specified, the default page size is 50 records

sort_by

String

Sort field, either company_name or company_location

sort_direction

String

Sort direction, either asc or desc

Headers

Name
Type
Description

X-CB-ApiKey*

{your API key}

Accept*

String

application/json

Response

200: OK

To see the full response, use the playground at https://api.salesintel.io

401: Unauthorized

You have not included your credentials properly in your request

402: Payment Required

You do not have enough credits to return any/all of your request

403: Forbidden

Your account does not have the necessary permissions to access this service

500: Internal Server Error

There may be an outage on the SalesIntel side. If the error persists, please contact us

Be sure to review the is_international and verified params to ensure that the companies returned meet your needs

Response Model
{
  "companies": [
    {
      "company_domain": "string",
      "company_id": number,
      "company_name": "string",
      "is_international": boolean,
      "requested_technologies_categories": [
        {
          "category": "string",
          "status": boolean
        }
      ],
      "requested_technologies_products": [
        {
          "product": "string",
          "status": boolean
        }
      ],
      "requested_technologies_subcategories": [
        {
          "status": boolean,
          "subcategory": "string"
        }
      ],
      "requested_technologies_vendors": [
        {
          "status": boolean,
          "vendor": "string"
        }
      ],
      "verified": boolean
    }
  ],
  "page": 0,
  "page_size": 0,
  "result_count": 0,
  "tech_count": 0,
  "total_count": 0
}

Retrieve the category/subcategory technology taxonomy

GET https://api.salesintel.io/service/technologies/taxonomy/categories

These values can be used in the tech_category/subcategory filters. Although this endpoint is "unpaid", it still requires authentication and proper account access.

Headers

Name
Type
Description

Accept*

String

application/json

X-CB-ApiKey*

String

{your API key}

Response

200: OK

To see the full response, use the playground at https://api.salesintel.io

401: Unauthorized

You have not included your credentials properly in your request

403: Forbidden

Your account does not have the necessary permissions to access this service

500: Internal Server Error

There may be an outage on the SalesIntel side. If the error persists, please contact us.

Response Model
{
  "categories": [
    {
      "category": "string",
      "subCategories": [
        "string"
      ]
    }
  ]
}

Retrieve the product/vendor technology taxonomy

GET https://api.salesintel.io/service/technologies/taxonomy/products

These values can be used in the tech_product/vendor filters. Although this endpoint is "unpaid", it still requires authentication and proper account access.

One of either product or vendor parameters is required to complete this request.

Query Parameters

Name
Type
Description

product

String

Tilda (~) - separated list of products; names are not case-sensitive and are matched using "contains". One of product or vendor is required on this endpoint.

vendor

String

Tilda (~) - separated list of vendors; names are not case-sensitive and are matched using "contains". One of product or vendor is required on this endpoint.

page

Integer

Page number

page_size

Integer

If not specified, the default page size is 50 records

sort_by

Integer

Sort field, either product or vendor

sort_direction

Integer

Sort direction, either asc or desc

Headers

Name
Type
Description

Accept*

String

application/json

X-CB-ApiKey*

String

{your API key}

Response

200: OK

To see the full response, use the playground at https://api.salesintel.io

401: Unauthorized

You have not included your credentials properly in your request

403: Forbidden

Your account does not have the necessary permissions to access this service

500: Internal Server Error

There may be an outage on the SalesIntel side. If the error persists, please contact us.

Response Model
{
  "page": 0,
  "page_size": 0,
  "products": [
    {
      "product": "string",
      "vendor": "string"
    }
  ],
  "result_count": 0,
  "sort_by": "string",
  "sort_direction": "string",
  "total_count": 0
}

Tilda (~) - separated lists of technographic categories in use by the company (this filter requires add-on permissions; use the to identify supported categories)

Tilda (~) - separated lists of technographic sub-categories in use by the company (this filter requires add-on permissions; use the to identify supported sub-categories)

Tilda (~) - separated lists of technographic products in use by the company (this filter requires add-on permissions; use the to identify supported products)

Tilda (~) - separated lists of technographic vendors in use by the company (this filter requires add-on permissions; use the to identify supported vendors)

https://api.salesintel.io
technologies taxonomy API
technologies taxonomy API
technologies taxonomy API
technologies taxonomy API