Technographic APIs

Use the API playground at https://api.salesintel.io 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

NameTypeDescription

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

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

tech_subcategory

String

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

tech_product

String

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

tech_vendor

String

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

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

NameTypeDescription

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

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

NameTypeDescription

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

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

Retrieve the product/vendor technology taxonomy

GET https://api.circleback.com/service/technologies/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

NameTypeDescription

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

NameTypeDescription

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.circleback.com

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

Last updated