IntroductionQuickstartAuthenticationPaginationRate Limit

Search endpoints

Job Search POSTCompany Search POSTTechnographics POST

Account endpoints

Get Credit Balance GETGet Credits Consumption GET

Other

TheirStack TheirStack Logo
DocumentationAPI ReferenceWebhooksDatasets

Technographics

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.

POST
/v1/companies/technologies

Authorization

Bearer
AuthorizationBearer <token>

In: header

Request Body

application/json

  • company_id
    stringnullable
    null1234567890

    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
    stringnullable
    nullGoogleStripe

    Only return companies that match this name exactly, case-sensitively.

  • company_domain
    stringnullable
    nullgoogle.comhttps://www.google.com/andrew@stripe.com

    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
    stringnullable
    nullhttps://www.linkedin.com/company/openai/https://www.linkedin.com/company/google/

    Return companies whose LinkedIn URL matches this URL exactly.

  • company_name_or
    array<string>
    default: [][]["Google","Facebook","Apple"]
    deprecated

    Only return companies that match these names exactly, case-sensitively. Deprecated, use the company_name filter instead.

  • order_by
    array<ColumnSortCompanyTechDetails>
    default: [{"desc":true,"field":"confidence"},{"desc":true,"field":"jobs"}]

    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.

  • include_total_results
    booleannullable
    default: false

    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
    integernullable
    0 <= valuenull0

    Number of results to skip. Required for offset-based pagination.

  • page
    integernullable
    0 <= valuenull0

    Page number. Required when using page-based pagination.

  • limit
    integernullable
    1 <= valuenull50500

    Number of results per page

  • technology_slug_or
    array<string>
    default: []

    Will return jobs from companies that that have mentioned any of these technologies in their jobs. Case sensitive. Pass slugs. Check out all the technologies we track at GET /v0/catalog/technologies

  • technology_category_slug_or
    array<string>
    default: []

    Will return jobs from companies that that have mentioned any technology from any of these categories in their jobs Case sensitive. Pass slugs. Check out all the technology categories we track at GET /v0/catalog/technologies/categories

  • technology_parent_category_slug_or
    array<string>
    default: []

    Will return jobs from companies that that have mentioned any technology from any of these parent categories in their jobs Case sensitive. Pass slugs. Check out all the technology parent categories we track at GET /v0/catalog/technologies/categories

  • max_rank
    integernullable
    null

    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
    integernullable
    null

    Minimum number of jobs found by each company using a technology

  • max_jobs
    integernullable
    null

    Maximum number of jobs found by each company using a technology

  • min_relative_occurrence
    numbernullable
    null

    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
    stringnullable
    datenull

    Only return technologies where the first time they were found was after or on this date. Format: "YYYY-MM-DD"

  • first_date_found_lte
    stringnullable
    datenull

    Only return technologies where the first time they were found was before or on this date. Format: "YYYY-MM-DD"

  • last_date_found_gte
    stringnullable
    datenull

    Only return technologies where the last time they were found was after or on this date. Format: "YYYY-MM-DD"

  • last_date_found_lte
    stringnullable
    datenull

    Only return technologies where the last time they were found was before or on this date. Format: "YYYY-MM-DD"

  • confidence_or
    array<string>
    default: []

    Returns technologies with any of these confidence values that the companies use them. Available values: "high", "medium", "low"

    • low
    • medium
    • high
  • [key: string]
    never

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X POST "https://api.theirstack.com/v1/companies/technologies" \  -H "Content-Type: application/json" \  -d '{    "company_domain": "google.com"  }'
{
  "data": [
    {
      "technology": {
        "name": "PostgreSQL",
        "category": "Relational Database",
        "slug": "kafka",
        "category_slug": "message-queue",
        "parent_category": "Data Stores",
        "parent_category_slug": "data-stores",
        "logo": "string",
        "logo_thumbnail": "string"
      },
      "confidence": "low",
      "jobs": 54,
      "jobs_last_7_days": 0,
      "jobs_last_30_days": 0,
      "jobs_last_180_days": 0,
      "first_date_found": "2019-08-24",
      "last_date_found": "2019-08-24",
      "rank_within_category": 0,
      "relative_occurrence_within_category": 0,
      "theirstack_score": 0,
      "company_name": "Google"
    }
  ],
  "metadata": {
    "total_results": 2034,
    "truncated_results": 0,
    "truncated_companies": 0,
    "total_companies": 1045
  }
}
{
  "request_id": null,
  "error": {
    "code": "E-001",
    "title": "Not allowed exception",
    "description": "string"
  }
}
{
  "request_id": null,
  "error": {
    "code": "E-001",
    "title": "Not allowed exception",
    "description": "string"
  }
}
{
  "request_id": null,
  "error": {
    "code": "E-001",
    "title": "Not allowed exception",
    "description": "string"
  }
}
{
  "request_id": null,
  "error": {
    "code": "E-001",
    "title": "Not allowed exception",
    "description": "string"
  }
}

How is this guide?

Last updated on

Company Search POST

This endpoint lets you search for companies by technology stack, hiring signals, and firmographics. It returns a list of companies that match the search criteria, along with the jobs and technology objects for each company that match the filters you've passed.

Get Credit Balance GET

Get your current credits balance

curl -X POST "https://api.theirstack.com/v1/companies/technologies" \
  -H "Content-Type: application/json" \
  -d '{
    "company_domain": "google.com"
  }'