---
title: "Technographics"
method: POST
path: "/v1/companies/technologies"
tags: ["Companies"]
---

# Technographics

`POST /v1/companies/technologies`

This endpoint lists the technologies used by a company. For each technology, it returns the confidence level (`low`, `medium`, `high`), the number of jobs that mention the technology, and the first and last dates it was mentioned.

You must specify `company_domain`, `company_name`, `company_linkedin_url`.

It consumes **3 API credits** per company lookup, regardless of the number of technologies returned. It doesn't consume credits if there is no response.

## Request body

- TechnographicsFilters — Filter technologies and buying intent topics detected for a company.
  - `company_id` string, nullable — Only return companies that match this TheirStack Company ID exactly. This ID is temporary and internal and will change in the future and become stable. Until then, it is only meant to be used internally by our UI (app.theirstack.com). For deduplication logic, use company_domain or company_linkedin_url instead.
  - `company_name` string, nullable — Only return companies that match this name exactly, case-sensitively.
  - `company_domain` string, nullable — Only return companies that match this domain exactly. It accepts full urls (https://www.google.com/) and emails (john.polo@gmail.com).
  - `company_linkedin_url` string, nullable — Return companies whose LinkedIn URL matches this URL exactly.
  - `company_name_or` string[] — Only return companies that match these names exactly, case-sensitively. Deprecated, use the `company_name` filter instead.
  - `order_by` ColumnSortCompanyTechDetails[] — List of column objects. You can pass several columns to order by, in order of priority. Only `field` is required, `desc` is True by default.
    - `desc` boolean — Whether to order by descending or ascending values
    - `field` unknown
  - `include_total_results` boolean, nullable — When enabled, calculates and returns `total_results` and `total_companies` fields in the response. WARNING: This significantly slows down responses as it requires reading the entire dataset. Recommended usage: enable only for the initial request to get totals, then disable for subsequent pagination requests.
  - `offset` integer, nullable — Number of results to skip. Required for [offset-based pagination](https://theirstack.com/en/docs/api-reference/pagination).
  - `page` integer, nullable — Page number. Required when using [page-based pagination](https://theirstack.com/en/docs/api-reference/pagination).
  - `limit` integer, nullable — Number of results per page
  - `keyword_slug_or` string[] — Return companies that have mentioned any of these keywords (technologies or buying intent topics) in their jobs. Case sensitive. Pass slugs. Check out all keywords at [GET /v0/catalog/keywords](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_keywords_v0)
  - `keyword_category_slug_or` string[] — Return companies that have mentioned any keyword from any of these categories in their jobs. Case sensitive. Pass slugs. Check out all keyword categories at [GET /v0/catalog/keywords/categories](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_keywords_categories_v0)
  - `keyword_parent_category_slug_or` string[] — Return companies that have mentioned any keyword from any of these parent categories in their jobs. Case sensitive. Pass slugs. Check out all keyword categories at [GET /v0/catalog/keywords/categories](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_keywords_categories_v0)
  - `technology_slug_or` string[] — Deprecated: use `keyword_slug_or` instead. Will return companies that have mentioned any of these technologies in their jobs. Case sensitive. Pass slugs.
  - `technology_category_slug_or` string[] — Deprecated: use `keyword_category_slug_or` instead. Will return companies that have mentioned any keyword from any of these categories in their jobs. Case sensitive. Pass slugs.
  - `technology_parent_category_slug_or` string[] — Deprecated: use `keyword_parent_category_slug_or` instead. Will return companies that have mentioned any keyword from any of these parent categories in their jobs. Case sensitive. Pass slugs.
  - `max_rank` integer, nullable — The rank measures how common is a technology within its category. The technology most used among similar ones by a company will have a rank of 1, the second: 2, etc. This is useful to filter results by technology and get only results for the primary technology.
  - `min_jobs` integer, nullable — Minimum number of jobs found by each company using a technology
  - `max_jobs` integer, nullable — Maximum number of jobs found by each company using a technology
  - `min_relative_occurrence` number, nullable — Minimum value of relative_occurrence_within_category for each technology. Higher values increase the probability that this technology is actually used by the company, because it means a higher percentage of mentions to technologies among this category are of this technology.
  - `first_date_found_gte` string, date, nullable — Only return technologies where the first time they were found was after or on this date. Format: "YYYY-MM-DD"
  - `first_date_found_lte` string, date, nullable — Only return technologies where the first time they were found was before or on this date. Format: "YYYY-MM-DD"
  - `last_date_found_gte` string, date, nullable — Only return technologies where the last time they were found was after or on this date. Format: "YYYY-MM-DD"
  - `last_date_found_lte` string, date, nullable — Only return technologies where the last time they were found was before or on this date. Format: "YYYY-MM-DD"
  - `confidence_or` string[] — Returns technologies with any of these confidence values that the companies use them. Available values: "high", "medium", "low"

## Response `200`

Successful Response

- CompanyKeywordsResponse
  - `data` KeywordFoundV1[], required
    - `technology` KeywordExtended, required
      - `name` string, required
      - `category` string, nullable — Category of the keyword
      - `type` 'technology' | 'software_product' | 'technology_concept' | 'operational_activity' | 'strategic_initiative' | 'metric_or_concept' | 'product_or_service_offered' | 'regulation' | 'threat_or_risk' | 'event' | 'commodity' | 'industry_vertical' | 'physical_equipment' | 'medical_research' | 'government_body'
      - `slug` string, required — Slug of the keyword
      - `category_slug` string, nullable — Slug of the category of the keyword
      - `parent_category` string, nullable — Parent category of the keyword
      - `parent_category_slug` string, nullable — Slug of the parent category of the keyword
      - `logo` string, nullable — Logo of the keyword
      - `logo_thumbnail` string, nullable — Thumbnail of the keyword
    - `confidence` 'low' | 'medium' | 'high', required — How confident we are that the company uses this technology
    - `jobs` integer, required — Number of jobs found mentioning this technology
    - `jobs_last_7_days` integer, required — Number of jobs from the given company mentioning this technology in the last 7 days
    - `jobs_last_30_days` integer, required — Number of jobs from the given company mentioning this technology in the last 30 days
    - `jobs_last_180_days` integer, required — Number of jobs from the given company mentioning this technology in the last 180 days
    - `first_date_found` string, date, required — Date when the keyword was first mentioned by the company in a job post
    - `last_date_found` string, date, required — Date when the keyword was last mentioned by the company in a job post
    - `rank_within_category` integer, required — Measures how common this technology is among the company's jobs, compared to other technologies in the same category. The most mentioned technology in its category will have a rank of 1. This helps you infer which is the technology the company is most likely to be using, when they mention several technologies that belong to the same category.
    - `relative_occurrence_within_category` number, required — Measures the relative occurance of this technology among other technologies in the same category, in jobs by this company. If there are 10 jobs where a company mentions 3 categories, and they appear in 8, 3 and 2 jobs respectively, its relative occurrences will be 0.8, 0.3 and 0.2. This helps you infer how likely it is that the company is using this technology, when they mention several technologies that belong to the same category.
  - `metadata` Metadata, required
    - `total_results` integer, nullable — Total number of results
    - `truncated_results` integer, nullable — Number of results that were not returned because the user doesn't have enough credits to fetch them all the possible results the API could have returned
    - `truncated_companies` integer, nullable — Number of companies that were not returned because the user doesn't have enough credits to fetch all the possible results the API could have returned
    - `total_companies` integer, nullable — Total number of companies

## Other responses

- `400` — Bad Request
- `402` — Payment Required
- `422` — Unprocessable Entity
- `500` — Internal Server Error

---

[API](https://skmtc.net/theirstack/apis/theirstack-api-reference.md) · [All operations](https://skmtc.net/theirstack/apis/theirstack-api-reference/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/theirstack/theirstack-api-reference/versions/2723cd54b43e/schema)
