---
title: "Update Saved Search"
method: PATCH
path: "/v0/saved_searches/{search_id}"
tags: ["Saved Searches"]
---

# Update Saved Search

`PATCH /v0/saved_searches/{search_id}`

## Path parameters

- `search_id` integer, required — The ID of the saved search

## Request body

- SavedSearchUpdate
  - `name` string, nullable — Name of the saved search
  - `body` union — Filters. CompanySearchFilters if type is 'companies', JobSearchFilters if type is 'jobs'
    - CompanySearchFiltersInput
      - `expand_technology_slugs` string[] — Specify technology slugs to include detailed technology usage information for each company. The response will include a 'technologies_found' field containing metrics like confidence score, ranking, and job count for each specified technology. Note: If a technology is not listed for a company, it means that company does not use that technology. This feature is useful for enriching company data with their technology stack details.
      - `order_by` ColumnSortCompanySearch[] — 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` 'relevance' | 'name' | 'num_jobs' | 'num_jobs_last_30_days' | 'num_jobs_found' | 'employee_count' | 'alexa_ranking' | 'founded_year' | 'annual_revenue_usd' | 'total_funding_usd' | 'last_funding_round_date' | 'confidence' | 'jobs' | 'first_date_found', required — Order the results by one of these fields. Use 'relevance' (recommended) for the fastest, automatically optimized sort based on your filters.
      - `company_name_or` string[] — Only return companies that match these names exactly, case-sensitively. This filter acts as an OR filter, so if you pass more than one company name, it will return companies that match any of the names.
      - `company_name_case_insensitive_or` string[] — Only return companies that match these names exactly, case-insensitively.
      - `company_id_or` string[] — Only return companies that match these IDs exactly. This filter acts as an OR filter, so if you pass more than one company ID, it will return companies that match any of the IDs.
      - `company_id_not` string[] — Exclude companies that match these IDs. This filter acts as a NOT filter, so if you pass more than one company ID, it will exclude companies that match any of the IDs.
      - `company_domain_or` string[] — Only return companies that match these domains exactly. It accepts full urls (https://www.google.com/) and emails (john.polo@gmail.com). This filter acts as an OR filter, so if you pass more than one company domain, it will return companies that match any of the domains.
      - `company_domain_not` string[] — Only return companies that don't match these domains exactly. It accepts full urls (https://www.google.com/) and emails (john.polo@gmail.com).
      - `company_name_not` string[] — Only return companies that don't match these names exactly, case-sensitively.
      - `company_name_partial_match_or` string[] — Company names. Will return companies whose name contain any of the the substrings passed here, case-insensitively. For example, if you pass "google", it will return "Google", "Google LLC", "Google Inc", etc.
      - `company_name_partial_match_not` string[] — Company names. Will return companies whose name doesn't contain any of the the substrings passed here, case-insensitively. For example, if you pass 'google', it will exclude 'Google', 'Google LLC', 'Google Inc', etc.
      - `company_linkedin_url_or` string[] — Return companies whose LinkedIn page matches any of the values passed here. Both forms of LinkedIn company URL work — the vanity slug (`https://www.linkedin.com/company/google/`) and the numeric company ID (`https://www.linkedin.com/company/1038`) — as do a bare slug (`google`) and a bare numeric ID (`1038`). A numeric value is matched against the company's LinkedIn ID and its slug, so you do not need to know which of the two you are holding. We have a LinkedIn slug for ~26% of companies and a numeric LinkedIn ID for ~14%, so if you have the company's domain, `company_domain_or` matches more often.
      - `blur_company_data` boolean — Enable preview mode to return blurred data without consuming API credits. When enabled, sensitive company fields (name, domain, URLs, descriptions) and job-specific fields (description, URLs) are blurred. This mode is useful for sales software integrations to show data previews to end users. Not available when filtering by company identifiers (company_name, company_domain, company_linkedin_url, company_id). Learn more about [here](https://theirstack.com/en/docs/api/preview-data-mode)
      - `property_exists_or` string[] — Return companies that have any of these fields not null. For example, if you pass ['domain', 'linkedin_url'], it will return companies that have a domain OR a linkedin_url set.
      - `property_exists_and` string[] — Return companies that have all of these fields not null. For example, if you pass ['domain', 'linkedin_url'], it will return companies that have both domain AND linkedin_url set.
      - `offset` integer — Number of results to skip. Required for [offset-based pagination](https://theirstack.com/en/docs/api-reference/pagination).
      - `page` integer — Page number. Required when using [page-based pagination](https://theirstack.com/en/docs/api-reference/pagination).
      - `limit` integer — Number of results per page
      - `cursor` string, nullable — Cursor for pagination
      - `company_description_pattern_or` string[] — Case-insensitive patterns to match in the company description. Will return companies that match any of the patterns.
      - `company_description_pattern_not` string[] — Case-insensitive patterns to match in the company description. Will return companies that match any of the patterns.
      - `company_description_pattern_accent_insensitive` boolean, nullable — Set to True to make company description searches accent insensitive. For example, "á" will match "a" as well.
      - `min_revenue_usd` integer, nullable — Minimum company revenue, in USD
      - `max_revenue_usd` integer, nullable — Maximum company revenue, in USD
      - `min_employee_count` integer, nullable — Minimum number of employees in a company
      - `max_employee_count` integer, nullable — Maximum number of employees in a company
      - `min_employee_count_or_null` integer, nullable — Minimum number of employees in a company. If we don't have company size information, we will return it as well.
      - `max_employee_count_or_null` integer, nullable — Maximum number of employees in a company. If we don't have company size information, we will return it as well.
      - `min_funding_usd` integer, nullable — Minimum company funding, in USD
      - `max_funding_usd` integer, nullable — Maximum company funding, in USD
      - `funding_stage_or` string[] — Funding stages of companies returned. Possible values: ['angel', 'convertible_note', 'debt_financing', 'equity_crowdfunding', 'other', 'private_equity', 'seed', 'series_a', 'series_b', 'series_c', 'series_d', 'series_e', 'series_f', 'series_g', 'series_h', 'venture_round_not_specified', 'series_i', 'series_j', 'undisclosed', 'series_unknown', 'pre_seed', 'post_ipo_secondary', 'post_ipo_equity', 'post_ipo_debt', 'non_equity_assistance', 'late_vc', 'initial_coin_offering', 'growth_equity_vc', 'grant', 'early_vc', 'corporate_round', 'secondary_market', 'product_crowdfunding']
      - `industry_or` string[] — Names of industries, case-insensitive. Results will only include companies that belong to any of the industries specified in this parameter. Available values: [GET /v0/catalog/industries](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_industries_v0) WARNING: Deprecated parameter. Use the industry_id_or field instead.
      - `industry_not` string[] — Names of industries, case-insensitive. Results will exclude companies that belong to any of the industries specified in this parameter. Available values: [GET /v0/catalog/industries](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_industries_v0) WARNING: Deprecated parameter. Use the industry_id_not field instead.
      - `industry_id_or` integer[] — Industry codes. You can use any of [LinkedIn's Industry Codes V2](https://learn.microsoft.com/en-us/linkedin/shared/references/reference-tables/industry-codes-v2) or [GET /v0/catalog/industries](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_industries_v0)
      - `industry_id_not` integer[] — Industry ids to exclude.You can use any of [LinkedIn's Industry Codes V2](https://learn.microsoft.com/en-us/linkedin/shared/references/reference-tables/industry-codes-v2) or [GET /v0/catalog/industries](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_industries_v0)
      - `industry_id_not_or_null` integer[] — Industry ids to exclude. Companies whose industry we don't know are returned as well. You can use any of [LinkedIn's Industry Codes V2](https://learn.microsoft.com/en-us/linkedin/shared/references/reference-tables/industry-codes-v2) or [GET /v0/catalog/industries](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_industries_v0)
      - `company_tags_or` string[] — Return companies that match any of these keywords
      - `company_type` 'recruiting_agency' | 'direct_employer' | 'all', nullable — Filter by company type.
      - `company_investors_or` string[] — Investors of the company
      - `company_investors_partial_match_or` string[] — Investors of the company. Will return companies for which any of their investors contains any of the substrings passed here. For example, if you pass 'andree', all funds that match it (like 'Andreessen Horowitz', 'Andreessen Horowitz LLC', etc).
      - `company_technology_slug_or` string[] — Will return jobs from companies that that have mentioned any of these technologies in their jobs (not necessarily in the jobs returned). Case sensitive. Pass slugs. Check out all the technologies we track at [GET /v0/catalog/technologies](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_technologies_v0)
      - `company_technology_slug_and` string[] — Will return jobs from companies that that have mentioned all of these technologies in their jobs (not necessarily in the jobs returned). Case sensitive. Pass slugs. Check out all the technologies we track at [GET /v0/catalog/technologies](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_technologies_v0)
      - `company_technology_slug_not` string[] — Will return jobs from companies that that haven't mentioned any of these technologies in their jobs. Case sensitive. Pass slugs. Check out all the technologies we track at [GET /v0/catalog/technologies](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_technologies_v0)
      - `company_keyword_slug_or` string[] — Return results from companies that have mentioned any of these keywords in their jobs. Case sensitive. Pass slugs. Check out all the keywords we track at [GET /v0/catalog/keywords](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_keywords_v0)
      - `company_keyword_slug_and` string[] — Return results from companies that have mentioned all of these keywords in their jobs. Case sensitive. Pass slugs. Check out all the keywords we track at [GET /v0/catalog/keywords](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_keywords_v0)
      - `company_keyword_slug_not` string[] — Return results from companies that haven't mentioned any of these keywords in their jobs. Case sensitive. Pass slugs. Check out all the keywords we track at [GET /v0/catalog/keywords](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_keywords_v0)
      - `only_yc_companies` boolean, nullable — Only return YC companies
      - `company_location_pattern_or` string[] — Return companies whose city matches any of the patterns passed here. Case insensitive. For example, if you pass 'san francisco', it will return companies whose city is 'San Francisco', 'San Francisco Bay Area', etc.
      - `company_country_code_or` string[] — Return companies whose HQ country code is any of the ones passed here, case sensitive. Pass ISO2 country codes.
      - `company_country_code_not` string[] — Return companies whose HQ country code is not any of the ones passed here, case sensitive. Pass ISO2 country codes.
      - `company_country_code_not_or_null` string[] — Return companies whose HQ country code is not any of the ones passed here, case sensitive. Companies whose country we don't know are returned as well. Pass ISO2 country codes.
      - `company_list_id_or` integer[] — Return companies that belong to any of the company lists passed here
      - `company_list_id_not` integer[] — Return companies that don't belong to any of the company lists passed here
      - `company_linkedin_url_exists` boolean, nullable — (Use `property_exists_or / property_exists_and` instead) Only return companies with a LinkedIn URL
      - `revealed_company_data` boolean, nullable — This field is deprecated and has no effect.
      - `last_funding_round_date_lte` string, date, nullable — Only return companies whose last funding round date is before or on this date. Format: 'YYYY-MM-DD'
      - `last_funding_round_date_gte` string, date, nullable — Only return companies whose last funding round date is after or on this date. Format: 'YYYY-MM-DD'
      - `include_total_results` boolean — 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.
      - `job_filters` JobFiltersInput
        - `job_title_or` string[] — Keyword-based patterns to match job titles. Case-insensitive. Returns jobs whose title contains all the words in any of the patterns, in any order. For example, `marketing vp` matches titles such as `VP of Marketing` or `Marketing VP, EMEA`. Passing `["software engineer", "data scientist"]` returns jobs matching either pattern.
        - `job_title_not` string[] — Keyword-based patterns to exclude job titles. Case-insensitive. Excludes jobs whose title contains all the words in any of the patterns, in any order. For example, `marketing vp` excludes titles such as `VP of Marketing` or `Marketing VP, EMEA`.
        - `job_title_pattern_and` string[] — Regex patterns to match job titles. Case-insensitive. Only jobs with title that match all of these patterns will be returned.
        - `job_title_pattern_or` string[] — Regex patterns to match job titles. Case-insensitive. Jobs whose job title matches of the filters will be returned.
        - `job_title_pattern_not` string[] — Regex patterns to match job titles. Case-insensitive. Jobs whose job title doesn't match any of the patterns will be returned.
        - `job_country_code_or` string[] — 2-letter ISO country code of the location of the job. Can pass more than 1
        - `job_country_code_not` string[] — 2-letter ISO country code of the location of the job. Can pass more than 1. Will exclude jobs from these countries
        - `posted_at_max_age_days` integer, nullable — Date posted max age in days. If 0, only return jobs posted today. If 1, from today and yesterday, etc.
        - `posted_at_gte` string, date, nullable — ISO 8601 date string (yyyy-mm-dd). Only jobs published in this date or after will be returned.
        - `posted_at_lte` string, date, nullable — ISO 8601 date string (yyyy-mm-dd). Only jobs published in this date or before will be returned.
        - `discovered_at_max_age_days` integer, nullable — If 0, only return jobs added to our database in the current day. If 1, from today and yesterday, etc.
        - `discovered_at_min_age_days` integer, nullable — If 1, only return jobs discovered by TheirStack until yesterday. If 2, until 2 days ago, etc.
        - `discovered_at_gte` union — Only jobs discovered by TheirStack on this date or datetime or after will be returned. In UTC timezone.
          - string, date-time
          - string, date
        - `discovered_at_lte` union — Only jobs discovered by TheirStack on this date or datetime or before will be returned. In UTC timezone.
          - string, date-time
          - string, date
        - `job_description_pattern_or` string[] — Regex patterns to look for in job descriptions. Case-sensitive. Results will include jobs whose description matches any of these patterns. Use (?i) at the start of a pattern to make it case-insensitive. Can pass more than one.
        - `job_description_pattern_not` string[] — Regex patterns to look for in job descriptions. Case-sensitive. Results will include jobs whose description don't match any of these patterns. Use (?i) at the start of a pattern to make it case-insensitive. Can pass more than one.
        - `job_description_pattern_and` string[] — Regex patterns that must ALL match the job description (AND logic). Use (?i) at the start of a pattern to make it case-insensitive. Results will only include jobs whose description matches every pattern in this list.
        - `job_description_pattern_is_case_insensitive` boolean, nullable — Deprecated. Has no effect.
        - `job_description_contains_or` string[] — Search for whole words in job descriptions using word boundaries (\b). Case-insensitive by default, except for the patterns that are uppercase - in that case we'll respect it. Only finds complete words (e.g., searching 'quality' won't match 'inequality'). Results will include jobs whose description contains any of these words.
        - `job_description_contains_not` string[] — Exclude jobs whose description contains any of these whole words using word boundaries (\b). Case-insensitive by default, except for the patterns that are uppercase - in that case we'll respect it. Only finds complete words (e.g., searching 'quality' won't match 'inequality'). Results will exclude jobs whose description contains any of these words.
        - `job_description_pattern_case_sensitive_or` string[] — Deprecated. Use job_description_pattern_or instead, which now behaves identically.
        - `remote` boolean, nullable — True: only show remote jobs. False: only show non-remote jobs. None: show all jobs.
        - `only_jobs_with_reports_to` boolean, nullable — Only return jobs where we identified the role the hired person would report to. Deprecated field, use reports_to_exists instead.
        - `reports_to_exists` boolean, nullable — Only return jobs where we identified the role the hired person would report to. If True, only return jobs where we identified the role the hired person would report to. If False, only return jobs where we didn't identify the role the hired person would report to. If None, return all jobs.
        - `final_url_exists` boolean, nullable — (Use `property_exists_or / property_exists_and` instead) Only return jobs with a final URL. Typically jobs that were originally posted on an ATS. If True, only return jobs with a final URL. If False, only return jobs without a final URL. If None, return all jobs.
        - `only_jobs_with_hiring_managers` boolean, nullable — Only return jobs with a hiring manager. If True, only return jobs with a hiring manager. If False, only return jobs without a hiring manager. If None, return all jobs.
        - `hiring_managers_exists` boolean, nullable — (Use `property_exists_or / property_exists_and` instead) If True, only return jobs with a hiring manager. If False, only return jobs without a hiring manager. If None, return all jobs.
        - `job_id_or` integer[] — Get jobs with these IDs only.
        - `job_id_not` integer[] — Exclude jobs with these IDs.
        - `job_export_key_or` JobExportKey[] — Internal export lookup keys for fetching a materialized job batch.
          - `neg_posted_at_timestamp` integer, required
          - `url_hashed` integer, required
          - `company_name_slug` string, required
        - `job_ids` integer[] — Get jobs with these IDs only. Deprecated parameter, use job_id_or instead.
        - `job_seniority_or` string[] — Will return jobs where the seniority is any of the ones passed here
        - `min_salary_usd` number, nullable — Minimum annual salary in USD. For example, 100000 means $100,000.
        - `max_salary_usd` number, nullable — Maximum annual salary in USD. For example, 150000 means $150,000.
        - `job_technology_slug_or` string[] — Will return jobs where any of these technologies appear. Case sensitive. Pass slugs. Check out all the technologies we track with the technologies endpoint. If you pass more than one technology, we will return jobs that mentnion all of the technologies.
        - `job_technology_slug_not` string[] — Will return jobs where none of these technologies appear. Case sensitive. Pass slugs. Check out all the technologies we track with the technologies endpoint.
        - `job_technology_slug_and` string[] — Will return jobs where all of these technologies appear. Case sensitive. Pass slugs. Check out all the technologies we track with the technologies endpoint.
        - `job_keyword_slug_or` string[] — Will return jobs where any of these keyword slugs appear. Case sensitive. Check out all the keywords we track at [GET /v0/catalog/keywords](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_keywords_v0)
        - `job_keyword_slug_and` string[] — Will return jobs where all of these keyword slugs appear. Case sensitive. Check out all the keywords we track at [GET /v0/catalog/keywords](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_keywords_v0)
        - `job_keyword_slug_not` string[] — Will return jobs where none of these keyword slugs appear. Case sensitive. Check out all the keywords we track at [GET /v0/catalog/keywords](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_keywords_v0)
        - `job_location_pattern_or` string[] — Regex patterns to match job locations. Case-insensitive. Searches both the location field and the enhanced locations array (using normalized city and state name fields within each location element). Jobs matching ANY of the provided patterns will be returned. WARNING: Deprecated parameter. Use the `job_location_or` filter instead — it uses structured location IDs from the [locations catalog](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_locations_v0), which is more precise, supports hierarchical (country/region/city) and multi-language searches, has fewer false positives, and benefits from indexed lookups and recent accuracy fixes.
        - `job_location_pattern_not` string[] — Regex patterns to exclude job locations. Case-insensitive. Searches both the location field and the enhanced locations array (using normalized city and state name fields within each location element). Jobs matching ANY of the provided patterns will be EXCLUDED from results. WARNING: Deprecated parameter. Use the `job_location_not` filter instead — it uses structured location IDs from the [locations catalog](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_locations_v0), which is more precise, supports hierarchical (country/region/city) and multi-language searches, has fewer false positives, and benefits from indexed lookups and recent accuracy fixes.
        - `job_location_or` JobLocationFilter[] — Filter jobs by location. Returns jobs whose locations match ANY of the specified location criteria. Each location criteria is specified using a JobLocationFilter object. (You can find location IDs using the [locations catalog endpoint](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_locations_v0))
          - `id` integer, nullable — Filter by location id. You can discover all the locations from the locations catalog endpoint [GET /v0/catalog/locations](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_locations_v0)
        - `job_location_not` JobLocationFilter[] — Filter jobs by location. Returns jobs whose locations DO NOT match ANY of the specified location criteria. Each location criteria is specified using a JobLocationFilter object. (You can find location IDs using the [locations catalog endpoint](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_locations_v0))
          - `id` integer, nullable — Filter by location id. You can discover all the locations from the locations catalog endpoint [GET /v0/catalog/locations](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_locations_v0)
        - `url_domain_or` string[] — Include jobs only if their URL domain (from `url` or `source_url`) is in the provided case-insensitive list. For example, ['greenhouse.io', 'workable.com'] will match URLs containing 'greenhouse.io' or 'workable.com'. Refer to our list of sources at https://theirstack.com/en/docs/data/job/sources.
        - `url_domain_not` string[] — Exclude jobs if their URL domain (from `url` or `source_url`) is in the provided case-insensitive list. For example, ['greenhouse.io', 'workable.com'] will exclude URLs containing 'greenhouse.io' or 'workable.com'. Refer to our list of sources at https://theirstack.com/en/docs/data/job/sources.
        - `scraper_name_pattern_or` string[] — Regex patterns to match job sources. Case-insensitive.
        - `easy_apply` boolean, nullable — If True, only return jobs that can be applied directly through the job board. If False, only return jobs that require redirecting to the company's website.
        - `employment_statuses_or` Commitment[], nullable — Filter jobs by employment status. Returns jobs that match any of the specified employment types. If no values are provided or an empty list is sent, all jobs regardless of employment status will be returned.
        - `is_closed` boolean, nullable — If True, only return closed jobs (jobs where TheirStack detected the posting was closed). If False, only return open jobs. If None, return all jobs regardless of closure status.
        - `closed_at_gte` string, date, nullable — ISO 8601 date string (yyyy-mm-dd). Only return jobs closed on this date or after.
        - `closed_at_lte` string, date, nullable — ISO 8601 date string (yyyy-mm-dd). Only return jobs closed on this date or before.
        - `property_exists_or` string[] — Return jobs that have any of these fields not null. For example, if you pass ['hiring_team'], it will only return jobs that have a hiring team set.
        - `property_exists_and` string[] — Return jobs that have all of these fields not null. For example, if you pass ['hiring_team', 'final_url'], it will only return jobs that have both a hiring team and a final_url set.
      - `min_num_jobs_found` integer, nullable — Minimum number of jobs matching `job_filters` a company must have to be returned (thresholds the `num_jobs_found` count). Requires `job_filters` with a date filter, so the count is always computed over the date-bounded set of matching jobs.
      - `tech_filters` KeywordFilters — Filter by technologies and buying intent topics detected for a company.
        - `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"
    - JobSearchFiltersInput
      - `order_by` ColumnSortJobSearch[] — 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` 'date_posted' | 'discovered_at' | 'salary' | 'job_title' | 'company' | 'num_jobs' — Field to order by
      - `offset` integer — Number of results to skip. Required for [offset-based pagination](https://theirstack.com/en/docs/api-reference/pagination).
      - `page` integer — Page number. Required when using [page-based pagination](https://theirstack.com/en/docs/api-reference/pagination).
      - `limit` integer — Number of results per page
      - `cursor` string, nullable — Cursor for pagination
      - `job_title_or` string[] — Keyword-based patterns to match job titles. Case-insensitive. Returns jobs whose title contains all the words in any of the patterns, in any order. For example, `marketing vp` matches titles such as `VP of Marketing` or `Marketing VP, EMEA`. Passing `["software engineer", "data scientist"]` returns jobs matching either pattern.
      - `job_title_not` string[] — Keyword-based patterns to exclude job titles. Case-insensitive. Excludes jobs whose title contains all the words in any of the patterns, in any order. For example, `marketing vp` excludes titles such as `VP of Marketing` or `Marketing VP, EMEA`.
      - `job_title_pattern_and` string[] — Regex patterns to match job titles. Case-insensitive. Only jobs with title that match all of these patterns will be returned.
      - `job_title_pattern_or` string[] — Regex patterns to match job titles. Case-insensitive. Jobs whose job title matches of the filters will be returned.
      - `job_title_pattern_not` string[] — Regex patterns to match job titles. Case-insensitive. Jobs whose job title doesn't match any of the patterns will be returned.
      - `job_country_code_or` string[] — 2-letter ISO country code of the location of the job. Can pass more than 1
      - `job_country_code_not` string[] — 2-letter ISO country code of the location of the job. Can pass more than 1. Will exclude jobs from these countries
      - `posted_at_max_age_days` integer, nullable — Date posted max age in days. If 0, only return jobs posted today. If 1, from today and yesterday, etc.
      - `posted_at_gte` string, date, nullable — ISO 8601 date string (yyyy-mm-dd). Only jobs published in this date or after will be returned.
      - `posted_at_lte` string, date, nullable — ISO 8601 date string (yyyy-mm-dd). Only jobs published in this date or before will be returned.
      - `discovered_at_max_age_days` integer, nullable — If 0, only return jobs added to our database in the current day. If 1, from today and yesterday, etc.
      - `discovered_at_min_age_days` integer, nullable — If 1, only return jobs discovered by TheirStack until yesterday. If 2, until 2 days ago, etc.
      - `discovered_at_gte` union — Only jobs discovered by TheirStack on this date or datetime or after will be returned. In UTC timezone.
        - string, date-time
        - string, date
      - `discovered_at_lte` union — Only jobs discovered by TheirStack on this date or datetime or before will be returned. In UTC timezone.
        - string, date-time
        - string, date
      - `job_description_pattern_or` string[] — Regex patterns to look for in job descriptions. Case-sensitive. Results will include jobs whose description matches any of these patterns. Use (?i) at the start of a pattern to make it case-insensitive. Can pass more than one.
      - `job_description_pattern_not` string[] — Regex patterns to look for in job descriptions. Case-sensitive. Results will include jobs whose description don't match any of these patterns. Use (?i) at the start of a pattern to make it case-insensitive. Can pass more than one.
      - `job_description_pattern_and` string[] — Regex patterns that must ALL match the job description (AND logic). Use (?i) at the start of a pattern to make it case-insensitive. Results will only include jobs whose description matches every pattern in this list.
      - `job_description_pattern_is_case_insensitive` boolean, nullable — Deprecated. Has no effect.
      - `job_description_contains_or` string[] — Search for whole words in job descriptions using word boundaries (\b). Case-insensitive by default, except for the patterns that are uppercase - in that case we'll respect it. Only finds complete words (e.g., searching 'quality' won't match 'inequality'). Results will include jobs whose description contains any of these words.
      - `job_description_contains_not` string[] — Exclude jobs whose description contains any of these whole words using word boundaries (\b). Case-insensitive by default, except for the patterns that are uppercase - in that case we'll respect it. Only finds complete words (e.g., searching 'quality' won't match 'inequality'). Results will exclude jobs whose description contains any of these words.
      - `job_description_pattern_case_sensitive_or` string[] — Deprecated. Use job_description_pattern_or instead, which now behaves identically.
      - `remote` boolean, nullable — True: only show remote jobs. False: only show non-remote jobs. None: show all jobs.
      - `only_jobs_with_reports_to` boolean, nullable — Only return jobs where we identified the role the hired person would report to. Deprecated field, use reports_to_exists instead.
      - `reports_to_exists` boolean, nullable — Only return jobs where we identified the role the hired person would report to. If True, only return jobs where we identified the role the hired person would report to. If False, only return jobs where we didn't identify the role the hired person would report to. If None, return all jobs.
      - `final_url_exists` boolean, nullable — (Use `property_exists_or / property_exists_and` instead) Only return jobs with a final URL. Typically jobs that were originally posted on an ATS. If True, only return jobs with a final URL. If False, only return jobs without a final URL. If None, return all jobs.
      - `only_jobs_with_hiring_managers` boolean, nullable — Only return jobs with a hiring manager. If True, only return jobs with a hiring manager. If False, only return jobs without a hiring manager. If None, return all jobs.
      - `hiring_managers_exists` boolean, nullable — (Use `property_exists_or / property_exists_and` instead) If True, only return jobs with a hiring manager. If False, only return jobs without a hiring manager. If None, return all jobs.
      - `job_id_or` integer[] — Get jobs with these IDs only.
      - `job_id_not` integer[] — Exclude jobs with these IDs.
      - `job_export_key_or` JobExportKey[] — Internal export lookup keys for fetching a materialized job batch.
        - `neg_posted_at_timestamp` integer, required
        - `url_hashed` integer, required
        - `company_name_slug` string, required
      - `job_ids` integer[] — Get jobs with these IDs only. Deprecated parameter, use job_id_or instead.
      - `job_seniority_or` string[] — Will return jobs where the seniority is any of the ones passed here
      - `min_salary_usd` number, nullable — Minimum annual salary in USD. For example, 100000 means $100,000.
      - `max_salary_usd` number, nullable — Maximum annual salary in USD. For example, 150000 means $150,000.
      - `job_technology_slug_or` string[] — Will return jobs where any of these technologies appear. Case sensitive. Pass slugs. Check out all the technologies we track with the technologies endpoint. If you pass more than one technology, we will return jobs that mentnion all of the technologies.
      - `job_technology_slug_not` string[] — Will return jobs where none of these technologies appear. Case sensitive. Pass slugs. Check out all the technologies we track with the technologies endpoint.
      - `job_technology_slug_and` string[] — Will return jobs where all of these technologies appear. Case sensitive. Pass slugs. Check out all the technologies we track with the technologies endpoint.
      - `job_keyword_slug_or` string[] — Will return jobs where any of these keyword slugs appear. Case sensitive. Check out all the keywords we track at [GET /v0/catalog/keywords](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_keywords_v0)
      - `job_keyword_slug_and` string[] — Will return jobs where all of these keyword slugs appear. Case sensitive. Check out all the keywords we track at [GET /v0/catalog/keywords](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_keywords_v0)
      - `job_keyword_slug_not` string[] — Will return jobs where none of these keyword slugs appear. Case sensitive. Check out all the keywords we track at [GET /v0/catalog/keywords](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_keywords_v0)
      - `job_location_pattern_or` string[] — Regex patterns to match job locations. Case-insensitive. Searches both the location field and the enhanced locations array (using normalized city and state name fields within each location element). Jobs matching ANY of the provided patterns will be returned. WARNING: Deprecated parameter. Use the `job_location_or` filter instead — it uses structured location IDs from the [locations catalog](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_locations_v0), which is more precise, supports hierarchical (country/region/city) and multi-language searches, has fewer false positives, and benefits from indexed lookups and recent accuracy fixes.
      - `job_location_pattern_not` string[] — Regex patterns to exclude job locations. Case-insensitive. Searches both the location field and the enhanced locations array (using normalized city and state name fields within each location element). Jobs matching ANY of the provided patterns will be EXCLUDED from results. WARNING: Deprecated parameter. Use the `job_location_not` filter instead — it uses structured location IDs from the [locations catalog](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_locations_v0), which is more precise, supports hierarchical (country/region/city) and multi-language searches, has fewer false positives, and benefits from indexed lookups and recent accuracy fixes.
      - `job_location_or` JobLocationFilter[] — Filter jobs by location. Returns jobs whose locations match ANY of the specified location criteria. Each location criteria is specified using a JobLocationFilter object. (You can find location IDs using the [locations catalog endpoint](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_locations_v0))
        - `id` integer, nullable — Filter by location id. You can discover all the locations from the locations catalog endpoint [GET /v0/catalog/locations](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_locations_v0)
      - `job_location_not` JobLocationFilter[] — Filter jobs by location. Returns jobs whose locations DO NOT match ANY of the specified location criteria. Each location criteria is specified using a JobLocationFilter object. (You can find location IDs using the [locations catalog endpoint](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_locations_v0))
        - `id` integer, nullable — Filter by location id. You can discover all the locations from the locations catalog endpoint [GET /v0/catalog/locations](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_locations_v0)
      - `url_domain_or` string[] — Include jobs only if their URL domain (from `url` or `source_url`) is in the provided case-insensitive list. For example, ['greenhouse.io', 'workable.com'] will match URLs containing 'greenhouse.io' or 'workable.com'. Refer to our list of sources at https://theirstack.com/en/docs/data/job/sources.
      - `url_domain_not` string[] — Exclude jobs if their URL domain (from `url` or `source_url`) is in the provided case-insensitive list. For example, ['greenhouse.io', 'workable.com'] will exclude URLs containing 'greenhouse.io' or 'workable.com'. Refer to our list of sources at https://theirstack.com/en/docs/data/job/sources.
      - `scraper_name_pattern_or` string[] — Regex patterns to match job sources. Case-insensitive.
      - `easy_apply` boolean, nullable — If True, only return jobs that can be applied directly through the job board. If False, only return jobs that require redirecting to the company's website.
      - `employment_statuses_or` Commitment[], nullable — Filter jobs by employment status. Returns jobs that match any of the specified employment types. If no values are provided or an empty list is sent, all jobs regardless of employment status will be returned.
      - `is_closed` boolean, nullable — If True, only return closed jobs (jobs where TheirStack detected the posting was closed). If False, only return open jobs. If None, return all jobs regardless of closure status.
      - `closed_at_gte` string, date, nullable — ISO 8601 date string (yyyy-mm-dd). Only return jobs closed on this date or after.
      - `closed_at_lte` string, date, nullable — ISO 8601 date string (yyyy-mm-dd). Only return jobs closed on this date or before.
      - `property_exists_or` string[] — Return jobs that have any of these fields not null. For example, if you pass ['final_url'], it will return jobs that have a final_url set. This field also support chaining of fields. For example, if you pass ['company_object.domain', 'company_object.linkedin_url'], it will return jobs that have a company domain or a company linkedin_url set.
      - `property_exists_and` string[]
      - `company_name_or` string[] — Only return companies that match these names exactly, case-sensitively. This filter acts as an OR filter, so if you pass more than one company name, it will return companies that match any of the names.
      - `company_name_case_insensitive_or` string[] — Only return companies that match these names exactly, case-insensitively.
      - `company_id_or` string[] — Only return companies that match these IDs exactly. This filter acts as an OR filter, so if you pass more than one company ID, it will return companies that match any of the IDs.
      - `company_id_not` string[] — Exclude companies that match these IDs. This filter acts as a NOT filter, so if you pass more than one company ID, it will exclude companies that match any of the IDs.
      - `company_domain_or` string[] — Only return companies that match these domains exactly. It accepts full urls (https://www.google.com/) and emails (john.polo@gmail.com). This filter acts as an OR filter, so if you pass more than one company domain, it will return companies that match any of the domains.
      - `company_domain_not` string[] — Only return companies that don't match these domains exactly. It accepts full urls (https://www.google.com/) and emails (john.polo@gmail.com).
      - `company_name_not` string[] — Only return companies that don't match these names exactly, case-sensitively.
      - `company_name_partial_match_or` string[] — Company names. Will return companies whose name contain any of the the substrings passed here, case-insensitively. For example, if you pass "google", it will return "Google", "Google LLC", "Google Inc", etc.
      - `company_name_partial_match_not` string[] — Company names. Will return companies whose name doesn't contain any of the the substrings passed here, case-insensitively. For example, if you pass 'google', it will exclude 'Google', 'Google LLC', 'Google Inc', etc.
      - `company_linkedin_url_or` string[] — Return companies whose LinkedIn page matches any of the values passed here. Both forms of LinkedIn company URL work — the vanity slug (`https://www.linkedin.com/company/google/`) and the numeric company ID (`https://www.linkedin.com/company/1038`) — as do a bare slug (`google`) and a bare numeric ID (`1038`). A numeric value is matched against the company's LinkedIn ID and its slug, so you do not need to know which of the two you are holding. We have a LinkedIn slug for ~26% of companies and a numeric LinkedIn ID for ~14%, so if you have the company's domain, `company_domain_or` matches more often.
      - `blur_company_data` boolean — Enable preview mode to return blurred data without consuming API credits. When enabled, sensitive company fields (name, domain, URLs, descriptions) and job-specific fields (description, URLs) are blurred. This mode is useful for sales software integrations to show data previews to end users. Not available when filtering by company identifiers (company_name, company_domain, company_linkedin_url, company_id). Learn more about [here](https://theirstack.com/en/docs/api/preview-data-mode)
      - `company_description_pattern_or` string[] — Case-insensitive patterns to match in the company description. Will return companies that match any of the patterns.
      - `company_description_pattern_not` string[] — Case-insensitive patterns to match in the company description. Will return companies that match any of the patterns.
      - `company_description_pattern_accent_insensitive` boolean, nullable — Set to True to make company description searches accent insensitive. For example, "á" will match "a" as well.
      - `min_revenue_usd` integer, nullable — Minimum company revenue, in USD
      - `max_revenue_usd` integer, nullable — Maximum company revenue, in USD
      - `min_employee_count` integer, nullable — Minimum number of employees in a company
      - `max_employee_count` integer, nullable — Maximum number of employees in a company
      - `min_employee_count_or_null` integer, nullable — Minimum number of employees in a company. If we don't have company size information, we will return it as well.
      - `max_employee_count_or_null` integer, nullable — Maximum number of employees in a company. If we don't have company size information, we will return it as well.
      - `min_funding_usd` integer, nullable — Minimum company funding, in USD
      - `max_funding_usd` integer, nullable — Maximum company funding, in USD
      - `funding_stage_or` string[] — Funding stages of companies returned. Possible values: ['angel', 'convertible_note', 'debt_financing', 'equity_crowdfunding', 'other', 'private_equity', 'seed', 'series_a', 'series_b', 'series_c', 'series_d', 'series_e', 'series_f', 'series_g', 'series_h', 'venture_round_not_specified', 'series_i', 'series_j', 'undisclosed', 'series_unknown', 'pre_seed', 'post_ipo_secondary', 'post_ipo_equity', 'post_ipo_debt', 'non_equity_assistance', 'late_vc', 'initial_coin_offering', 'growth_equity_vc', 'grant', 'early_vc', 'corporate_round', 'secondary_market', 'product_crowdfunding']
      - `industry_or` string[] — Names of industries, case-insensitive. Results will only include companies that belong to any of the industries specified in this parameter. Available values: [GET /v0/catalog/industries](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_industries_v0) WARNING: Deprecated parameter. Use the industry_id_or field instead.
      - `industry_not` string[] — Names of industries, case-insensitive. Results will exclude companies that belong to any of the industries specified in this parameter. Available values: [GET /v0/catalog/industries](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_industries_v0) WARNING: Deprecated parameter. Use the industry_id_not field instead.
      - `industry_id_or` integer[] — Industry codes. You can use any of [LinkedIn's Industry Codes V2](https://learn.microsoft.com/en-us/linkedin/shared/references/reference-tables/industry-codes-v2) or [GET /v0/catalog/industries](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_industries_v0)
      - `industry_id_not` integer[] — Industry ids to exclude.You can use any of [LinkedIn's Industry Codes V2](https://learn.microsoft.com/en-us/linkedin/shared/references/reference-tables/industry-codes-v2) or [GET /v0/catalog/industries](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_industries_v0)
      - `industry_id_not_or_null` integer[] — Industry ids to exclude. Companies whose industry we don't know are returned as well. You can use any of [LinkedIn's Industry Codes V2](https://learn.microsoft.com/en-us/linkedin/shared/references/reference-tables/industry-codes-v2) or [GET /v0/catalog/industries](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_industries_v0)
      - `company_tags_or` string[] — Return companies that match any of these keywords
      - `company_type` 'recruiting_agency' | 'direct_employer' | 'all', nullable — Filter by company type.
      - `company_investors_or` string[] — Investors of the company
      - `company_investors_partial_match_or` string[] — Investors of the company. Will return companies for which any of their investors contains any of the substrings passed here. For example, if you pass 'andree', all funds that match it (like 'Andreessen Horowitz', 'Andreessen Horowitz LLC', etc).
      - `company_technology_slug_or` string[] — Will return jobs from companies that that have mentioned any of these technologies in their jobs (not necessarily in the jobs returned). Case sensitive. Pass slugs. Check out all the technologies we track at [GET /v0/catalog/technologies](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_technologies_v0)
      - `company_technology_slug_and` string[] — Will return jobs from companies that that have mentioned all of these technologies in their jobs (not necessarily in the jobs returned). Case sensitive. Pass slugs. Check out all the technologies we track at [GET /v0/catalog/technologies](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_technologies_v0)
      - `company_technology_slug_not` string[] — Will return jobs from companies that that haven't mentioned any of these technologies in their jobs. Case sensitive. Pass slugs. Check out all the technologies we track at [GET /v0/catalog/technologies](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_technologies_v0)
      - `company_keyword_slug_or` string[] — Return results from companies that have mentioned any of these keywords in their jobs. Case sensitive. Pass slugs. Check out all the keywords we track at [GET /v0/catalog/keywords](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_keywords_v0)
      - `company_keyword_slug_and` string[] — Return results from companies that have mentioned all of these keywords in their jobs. Case sensitive. Pass slugs. Check out all the keywords we track at [GET /v0/catalog/keywords](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_keywords_v0)
      - `company_keyword_slug_not` string[] — Return results from companies that haven't mentioned any of these keywords in their jobs. Case sensitive. Pass slugs. Check out all the keywords we track at [GET /v0/catalog/keywords](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_keywords_v0)
      - `only_yc_companies` boolean, nullable — Only return YC companies
      - `company_location_pattern_or` string[] — Return companies whose city matches any of the patterns passed here. Case insensitive. For example, if you pass 'san francisco', it will return companies whose city is 'San Francisco', 'San Francisco Bay Area', etc.
      - `company_country_code_or` string[] — Return companies whose HQ country code is any of the ones passed here, case sensitive. Pass ISO2 country codes.
      - `company_country_code_not` string[] — Return companies whose HQ country code is not any of the ones passed here, case sensitive. Pass ISO2 country codes.
      - `company_country_code_not_or_null` string[] — Return companies whose HQ country code is not any of the ones passed here, case sensitive. Companies whose country we don't know are returned as well. Pass ISO2 country codes.
      - `company_list_id_or` integer[] — Return companies that belong to any of the company lists passed here
      - `company_list_id_not` integer[] — Return companies that don't belong to any of the company lists passed here
      - `company_linkedin_url_exists` boolean, nullable — (Use `property_exists_or / property_exists_and` instead) Only return companies with a LinkedIn URL
      - `revealed_company_data` boolean, nullable — This field is deprecated and has no effect.
      - `last_funding_round_date_lte` string, date, nullable — Only return companies whose last funding round date is before or on this date. Format: 'YYYY-MM-DD'
      - `last_funding_round_date_gte` string, date, nullable — Only return companies whose last funding round date is after or on this date. Format: 'YYYY-MM-DD'
      - `include_total_results` boolean — 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.
  - `type` 'companies' | 'jobs'
  - `is_alert_active` boolean, nullable — Is the alert active
  - `frequency` 'daily' | 'weekly', nullable — Frequency of emails alerts sent.
  - `emails_subscribed` string[], nullable — Emails subscribed to the saved search alerts.

## Response `200`

Successful Response

- SavedSearch
  - `id` integer, required — ID of the saved search
  - `name` string, required — Name of the saved search
  - `type` 'companies' | 'jobs', required
  - `body` union, required — Filters. CompanySearchFilters if type is 'companies', JobSearchFilters if type is 'jobs'
    - CompanySearchFiltersOutput
      - `expand_technology_slugs` string[] — Specify technology slugs to include detailed technology usage information for each company. The response will include a 'technologies_found' field containing metrics like confidence score, ranking, and job count for each specified technology. Note: If a technology is not listed for a company, it means that company does not use that technology. This feature is useful for enriching company data with their technology stack details.
      - `order_by` ColumnSortCompanySearch[] — 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` 'relevance' | 'name' | 'num_jobs' | 'num_jobs_last_30_days' | 'num_jobs_found' | 'employee_count' | 'alexa_ranking' | 'founded_year' | 'annual_revenue_usd' | 'total_funding_usd' | 'last_funding_round_date' | 'confidence' | 'jobs' | 'first_date_found', required — Order the results by one of these fields. Use 'relevance' (recommended) for the fastest, automatically optimized sort based on your filters.
      - `company_name_or` string[] — Only return companies that match these names exactly, case-sensitively. This filter acts as an OR filter, so if you pass more than one company name, it will return companies that match any of the names.
      - `company_name_case_insensitive_or` string[] — Only return companies that match these names exactly, case-insensitively.
      - `company_id_or` string[] — Only return companies that match these IDs exactly. This filter acts as an OR filter, so if you pass more than one company ID, it will return companies that match any of the IDs.
      - `company_id_not` string[] — Exclude companies that match these IDs. This filter acts as a NOT filter, so if you pass more than one company ID, it will exclude companies that match any of the IDs.
      - `company_domain_or` string[] — Only return companies that match these domains exactly. It accepts full urls (https://www.google.com/) and emails (john.polo@gmail.com). This filter acts as an OR filter, so if you pass more than one company domain, it will return companies that match any of the domains.
      - `company_domain_not` string[] — Only return companies that don't match these domains exactly. It accepts full urls (https://www.google.com/) and emails (john.polo@gmail.com).
      - `company_name_not` string[] — Only return companies that don't match these names exactly, case-sensitively.
      - `company_name_partial_match_or` string[] — Company names. Will return companies whose name contain any of the the substrings passed here, case-insensitively. For example, if you pass "google", it will return "Google", "Google LLC", "Google Inc", etc.
      - `company_name_partial_match_not` string[] — Company names. Will return companies whose name doesn't contain any of the the substrings passed here, case-insensitively. For example, if you pass 'google', it will exclude 'Google', 'Google LLC', 'Google Inc', etc.
      - `company_linkedin_url_or` string[] — Return companies whose LinkedIn page matches any of the values passed here. Both forms of LinkedIn company URL work — the vanity slug (`https://www.linkedin.com/company/google/`) and the numeric company ID (`https://www.linkedin.com/company/1038`) — as do a bare slug (`google`) and a bare numeric ID (`1038`). A numeric value is matched against the company's LinkedIn ID and its slug, so you do not need to know which of the two you are holding. We have a LinkedIn slug for ~26% of companies and a numeric LinkedIn ID for ~14%, so if you have the company's domain, `company_domain_or` matches more often.
      - `blur_company_data` boolean — Enable preview mode to return blurred data without consuming API credits. When enabled, sensitive company fields (name, domain, URLs, descriptions) and job-specific fields (description, URLs) are blurred. This mode is useful for sales software integrations to show data previews to end users. Not available when filtering by company identifiers (company_name, company_domain, company_linkedin_url, company_id). Learn more about [here](https://theirstack.com/en/docs/api/preview-data-mode)
      - `property_exists_or` string[] — Return companies that have any of these fields not null. For example, if you pass ['domain', 'linkedin_url'], it will return companies that have a domain OR a linkedin_url set.
      - `property_exists_and` string[] — Return companies that have all of these fields not null. For example, if you pass ['domain', 'linkedin_url'], it will return companies that have both domain AND linkedin_url set.
      - `offset` integer — Number of results to skip. Required for [offset-based pagination](https://theirstack.com/en/docs/api-reference/pagination).
      - `page` integer — Page number. Required when using [page-based pagination](https://theirstack.com/en/docs/api-reference/pagination).
      - `limit` integer — Number of results per page
      - `company_description_pattern_or` string[] — Case-insensitive patterns to match in the company description. Will return companies that match any of the patterns.
      - `company_description_pattern_not` string[] — Case-insensitive patterns to match in the company description. Will return companies that match any of the patterns.
      - `company_description_pattern_accent_insensitive` boolean, nullable — Set to True to make company description searches accent insensitive. For example, "á" will match "a" as well.
      - `min_revenue_usd` integer, nullable — Minimum company revenue, in USD
      - `max_revenue_usd` integer, nullable — Maximum company revenue, in USD
      - `min_employee_count` integer, nullable — Minimum number of employees in a company
      - `max_employee_count` integer, nullable — Maximum number of employees in a company
      - `min_employee_count_or_null` integer, nullable — Minimum number of employees in a company. If we don't have company size information, we will return it as well.
      - `max_employee_count_or_null` integer, nullable — Maximum number of employees in a company. If we don't have company size information, we will return it as well.
      - `min_funding_usd` integer, nullable — Minimum company funding, in USD
      - `max_funding_usd` integer, nullable — Maximum company funding, in USD
      - `funding_stage_or` string[] — Funding stages of companies returned. Possible values: ['angel', 'convertible_note', 'debt_financing', 'equity_crowdfunding', 'other', 'private_equity', 'seed', 'series_a', 'series_b', 'series_c', 'series_d', 'series_e', 'series_f', 'series_g', 'series_h', 'venture_round_not_specified', 'series_i', 'series_j', 'undisclosed', 'series_unknown', 'pre_seed', 'post_ipo_secondary', 'post_ipo_equity', 'post_ipo_debt', 'non_equity_assistance', 'late_vc', 'initial_coin_offering', 'growth_equity_vc', 'grant', 'early_vc', 'corporate_round', 'secondary_market', 'product_crowdfunding']
      - `industry_or` string[] — Names of industries, case-insensitive. Results will only include companies that belong to any of the industries specified in this parameter. Available values: [GET /v0/catalog/industries](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_industries_v0) WARNING: Deprecated parameter. Use the industry_id_or field instead.
      - `industry_not` string[] — Names of industries, case-insensitive. Results will exclude companies that belong to any of the industries specified in this parameter. Available values: [GET /v0/catalog/industries](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_industries_v0) WARNING: Deprecated parameter. Use the industry_id_not field instead.
      - `industry_id_or` integer[] — Industry codes. You can use any of [LinkedIn's Industry Codes V2](https://learn.microsoft.com/en-us/linkedin/shared/references/reference-tables/industry-codes-v2) or [GET /v0/catalog/industries](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_industries_v0)
      - `industry_id_not` integer[] — Industry ids to exclude.You can use any of [LinkedIn's Industry Codes V2](https://learn.microsoft.com/en-us/linkedin/shared/references/reference-tables/industry-codes-v2) or [GET /v0/catalog/industries](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_industries_v0)
      - `industry_id_not_or_null` integer[] — Industry ids to exclude. Companies whose industry we don't know are returned as well. You can use any of [LinkedIn's Industry Codes V2](https://learn.microsoft.com/en-us/linkedin/shared/references/reference-tables/industry-codes-v2) or [GET /v0/catalog/industries](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_industries_v0)
      - `company_tags_or` string[] — Return companies that match any of these keywords
      - `company_type` 'recruiting_agency' | 'direct_employer' | 'all', nullable — Filter by company type.
      - `company_investors_or` string[] — Investors of the company
      - `company_investors_partial_match_or` string[] — Investors of the company. Will return companies for which any of their investors contains any of the substrings passed here. For example, if you pass 'andree', all funds that match it (like 'Andreessen Horowitz', 'Andreessen Horowitz LLC', etc).
      - `company_technology_slug_or` string[] — Will return jobs from companies that that have mentioned any of these technologies in their jobs (not necessarily in the jobs returned). Case sensitive. Pass slugs. Check out all the technologies we track at [GET /v0/catalog/technologies](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_technologies_v0)
      - `company_technology_slug_and` string[] — Will return jobs from companies that that have mentioned all of these technologies in their jobs (not necessarily in the jobs returned). Case sensitive. Pass slugs. Check out all the technologies we track at [GET /v0/catalog/technologies](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_technologies_v0)
      - `company_technology_slug_not` string[] — Will return jobs from companies that that haven't mentioned any of these technologies in their jobs. Case sensitive. Pass slugs. Check out all the technologies we track at [GET /v0/catalog/technologies](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_technologies_v0)
      - `company_keyword_slug_or` string[] — Return results from companies that have mentioned any of these keywords in their jobs. Case sensitive. Pass slugs. Check out all the keywords we track at [GET /v0/catalog/keywords](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_keywords_v0)
      - `company_keyword_slug_and` string[] — Return results from companies that have mentioned all of these keywords in their jobs. Case sensitive. Pass slugs. Check out all the keywords we track at [GET /v0/catalog/keywords](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_keywords_v0)
      - `company_keyword_slug_not` string[] — Return results from companies that haven't mentioned any of these keywords in their jobs. Case sensitive. Pass slugs. Check out all the keywords we track at [GET /v0/catalog/keywords](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_keywords_v0)
      - `only_yc_companies` boolean, nullable — Only return YC companies
      - `company_location_pattern_or` string[] — Return companies whose city matches any of the patterns passed here. Case insensitive. For example, if you pass 'san francisco', it will return companies whose city is 'San Francisco', 'San Francisco Bay Area', etc.
      - `company_country_code_or` string[] — Return companies whose HQ country code is any of the ones passed here, case sensitive. Pass ISO2 country codes.
      - `company_country_code_not` string[] — Return companies whose HQ country code is not any of the ones passed here, case sensitive. Pass ISO2 country codes.
      - `company_country_code_not_or_null` string[] — Return companies whose HQ country code is not any of the ones passed here, case sensitive. Companies whose country we don't know are returned as well. Pass ISO2 country codes.
      - `company_list_id_or` integer[] — Return companies that belong to any of the company lists passed here
      - `company_list_id_not` integer[] — Return companies that don't belong to any of the company lists passed here
      - `company_linkedin_url_exists` boolean, nullable — (Use `property_exists_or / property_exists_and` instead) Only return companies with a LinkedIn URL
      - `revealed_company_data` boolean, nullable — This field is deprecated and has no effect.
      - `last_funding_round_date_lte` string, date, nullable — Only return companies whose last funding round date is before or on this date. Format: 'YYYY-MM-DD'
      - `last_funding_round_date_gte` string, date, nullable — Only return companies whose last funding round date is after or on this date. Format: 'YYYY-MM-DD'
      - `include_total_results` boolean — 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.
      - `job_filters` JobFiltersOutput
        - `job_title_or` string[] — Keyword-based patterns to match job titles. Case-insensitive. Returns jobs whose title contains all the words in any of the patterns, in any order. For example, `marketing vp` matches titles such as `VP of Marketing` or `Marketing VP, EMEA`. Passing `["software engineer", "data scientist"]` returns jobs matching either pattern.
        - `job_title_not` string[] — Keyword-based patterns to exclude job titles. Case-insensitive. Excludes jobs whose title contains all the words in any of the patterns, in any order. For example, `marketing vp` excludes titles such as `VP of Marketing` or `Marketing VP, EMEA`.
        - `job_title_pattern_and` string[] — Regex patterns to match job titles. Case-insensitive. Only jobs with title that match all of these patterns will be returned.
        - `job_title_pattern_or` string[] — Regex patterns to match job titles. Case-insensitive. Jobs whose job title matches of the filters will be returned.
        - `job_title_pattern_not` string[] — Regex patterns to match job titles. Case-insensitive. Jobs whose job title doesn't match any of the patterns will be returned.
        - `job_country_code_or` string[] — 2-letter ISO country code of the location of the job. Can pass more than 1
        - `job_country_code_not` string[] — 2-letter ISO country code of the location of the job. Can pass more than 1. Will exclude jobs from these countries
        - `posted_at_max_age_days` integer, nullable — Date posted max age in days. If 0, only return jobs posted today. If 1, from today and yesterday, etc.
        - `posted_at_gte` string, date, nullable — ISO 8601 date string (yyyy-mm-dd). Only jobs published in this date or after will be returned.
        - `posted_at_lte` string, date, nullable — ISO 8601 date string (yyyy-mm-dd). Only jobs published in this date or before will be returned.
        - `discovered_at_max_age_days` integer, nullable — If 0, only return jobs added to our database in the current day. If 1, from today and yesterday, etc.
        - `discovered_at_min_age_days` integer, nullable — If 1, only return jobs discovered by TheirStack until yesterday. If 2, until 2 days ago, etc.
        - `discovered_at_gte` union — Only jobs discovered by TheirStack on this date or datetime or after will be returned. In UTC timezone.
          - string, date-time
          - string, date
        - `discovered_at_lte` union — Only jobs discovered by TheirStack on this date or datetime or before will be returned. In UTC timezone.
          - string, date-time
          - string, date
        - `job_description_pattern_or` string[] — Regex patterns to look for in job descriptions. Case-sensitive. Results will include jobs whose description matches any of these patterns. Use (?i) at the start of a pattern to make it case-insensitive. Can pass more than one.
        - `job_description_pattern_not` string[] — Regex patterns to look for in job descriptions. Case-sensitive. Results will include jobs whose description don't match any of these patterns. Use (?i) at the start of a pattern to make it case-insensitive. Can pass more than one.
        - `job_description_pattern_and` string[] — Regex patterns that must ALL match the job description (AND logic). Use (?i) at the start of a pattern to make it case-insensitive. Results will only include jobs whose description matches every pattern in this list.
        - `job_description_pattern_is_case_insensitive` boolean, nullable — Deprecated. Has no effect.
        - `job_description_contains_or` string[] — Search for whole words in job descriptions using word boundaries (\b). Case-insensitive by default, except for the patterns that are uppercase - in that case we'll respect it. Only finds complete words (e.g., searching 'quality' won't match 'inequality'). Results will include jobs whose description contains any of these words.
        - `job_description_contains_not` string[] — Exclude jobs whose description contains any of these whole words using word boundaries (\b). Case-insensitive by default, except for the patterns that are uppercase - in that case we'll respect it. Only finds complete words (e.g., searching 'quality' won't match 'inequality'). Results will exclude jobs whose description contains any of these words.
        - `job_description_pattern_case_sensitive_or` string[] — Deprecated. Use job_description_pattern_or instead, which now behaves identically.
        - `remote` boolean, nullable — True: only show remote jobs. False: only show non-remote jobs. None: show all jobs.
        - `only_jobs_with_reports_to` boolean, nullable — Only return jobs where we identified the role the hired person would report to. Deprecated field, use reports_to_exists instead.
        - `reports_to_exists` boolean, nullable — Only return jobs where we identified the role the hired person would report to. If True, only return jobs where we identified the role the hired person would report to. If False, only return jobs where we didn't identify the role the hired person would report to. If None, return all jobs.
        - `final_url_exists` boolean, nullable — (Use `property_exists_or / property_exists_and` instead) Only return jobs with a final URL. Typically jobs that were originally posted on an ATS. If True, only return jobs with a final URL. If False, only return jobs without a final URL. If None, return all jobs.
        - `only_jobs_with_hiring_managers` boolean, nullable — Only return jobs with a hiring manager. If True, only return jobs with a hiring manager. If False, only return jobs without a hiring manager. If None, return all jobs.
        - `hiring_managers_exists` boolean, nullable — (Use `property_exists_or / property_exists_and` instead) If True, only return jobs with a hiring manager. If False, only return jobs without a hiring manager. If None, return all jobs.
        - `job_id_or` integer[] — Get jobs with these IDs only.
        - `job_id_not` integer[] — Exclude jobs with these IDs.
        - `job_ids` integer[] — Get jobs with these IDs only. Deprecated parameter, use job_id_or instead.
        - `job_seniority_or` string[] — Will return jobs where the seniority is any of the ones passed here
        - `min_salary_usd` number, nullable — Minimum annual salary in USD. For example, 100000 means $100,000.
        - `max_salary_usd` number, nullable — Maximum annual salary in USD. For example, 150000 means $150,000.
        - `job_technology_slug_or` string[] — Will return jobs where any of these technologies appear. Case sensitive. Pass slugs. Check out all the technologies we track with the technologies endpoint. If you pass more than one technology, we will return jobs that mentnion all of the technologies.
        - `job_technology_slug_not` string[] — Will return jobs where none of these technologies appear. Case sensitive. Pass slugs. Check out all the technologies we track with the technologies endpoint.
        - `job_technology_slug_and` string[] — Will return jobs where all of these technologies appear. Case sensitive. Pass slugs. Check out all the technologies we track with the technologies endpoint.
        - `job_keyword_slug_or` string[] — Will return jobs where any of these keyword slugs appear. Case sensitive. Check out all the keywords we track at [GET /v0/catalog/keywords](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_keywords_v0)
        - `job_keyword_slug_and` string[] — Will return jobs where all of these keyword slugs appear. Case sensitive. Check out all the keywords we track at [GET /v0/catalog/keywords](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_keywords_v0)
        - `job_keyword_slug_not` string[] — Will return jobs where none of these keyword slugs appear. Case sensitive. Check out all the keywords we track at [GET /v0/catalog/keywords](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_keywords_v0)
        - `job_location_pattern_or` string[] — Regex patterns to match job locations. Case-insensitive. Searches both the location field and the enhanced locations array (using normalized city and state name fields within each location element). Jobs matching ANY of the provided patterns will be returned. WARNING: Deprecated parameter. Use the `job_location_or` filter instead — it uses structured location IDs from the [locations catalog](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_locations_v0), which is more precise, supports hierarchical (country/region/city) and multi-language searches, has fewer false positives, and benefits from indexed lookups and recent accuracy fixes.
        - `job_location_pattern_not` string[] — Regex patterns to exclude job locations. Case-insensitive. Searches both the location field and the enhanced locations array (using normalized city and state name fields within each location element). Jobs matching ANY of the provided patterns will be EXCLUDED from results. WARNING: Deprecated parameter. Use the `job_location_not` filter instead — it uses structured location IDs from the [locations catalog](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_locations_v0), which is more precise, supports hierarchical (country/region/city) and multi-language searches, has fewer false positives, and benefits from indexed lookups and recent accuracy fixes.
        - `job_location_or` JobLocationFilter[] — Filter jobs by location. Returns jobs whose locations match ANY of the specified location criteria. Each location criteria is specified using a JobLocationFilter object. (You can find location IDs using the [locations catalog endpoint](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_locations_v0))
          - `id` integer, nullable — Filter by location id. You can discover all the locations from the locations catalog endpoint [GET /v0/catalog/locations](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_locations_v0)
        - `job_location_not` JobLocationFilter[] — Filter jobs by location. Returns jobs whose locations DO NOT match ANY of the specified location criteria. Each location criteria is specified using a JobLocationFilter object. (You can find location IDs using the [locations catalog endpoint](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_locations_v0))
          - `id` integer, nullable — Filter by location id. You can discover all the locations from the locations catalog endpoint [GET /v0/catalog/locations](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_locations_v0)
        - `url_domain_or` string[] — Include jobs only if their URL domain (from `url` or `source_url`) is in the provided case-insensitive list. For example, ['greenhouse.io', 'workable.com'] will match URLs containing 'greenhouse.io' or 'workable.com'. Refer to our list of sources at https://theirstack.com/en/docs/data/job/sources.
        - `url_domain_not` string[] — Exclude jobs if their URL domain (from `url` or `source_url`) is in the provided case-insensitive list. For example, ['greenhouse.io', 'workable.com'] will exclude URLs containing 'greenhouse.io' or 'workable.com'. Refer to our list of sources at https://theirstack.com/en/docs/data/job/sources.
        - `scraper_name_pattern_or` string[] — Regex patterns to match job sources. Case-insensitive.
        - `easy_apply` boolean, nullable — If True, only return jobs that can be applied directly through the job board. If False, only return jobs that require redirecting to the company's website.
        - `employment_statuses_or` Commitment[], nullable — Filter jobs by employment status. Returns jobs that match any of the specified employment types. If no values are provided or an empty list is sent, all jobs regardless of employment status will be returned.
        - `is_closed` boolean, nullable — If True, only return closed jobs (jobs where TheirStack detected the posting was closed). If False, only return open jobs. If None, return all jobs regardless of closure status.
        - `closed_at_gte` string, date, nullable — ISO 8601 date string (yyyy-mm-dd). Only return jobs closed on this date or after.
        - `closed_at_lte` string, date, nullable — ISO 8601 date string (yyyy-mm-dd). Only return jobs closed on this date or before.
        - `property_exists_or` string[] — Return jobs that have any of these fields not null. For example, if you pass ['hiring_team'], it will only return jobs that have a hiring team set.
        - `property_exists_and` string[] — Return jobs that have all of these fields not null. For example, if you pass ['hiring_team', 'final_url'], it will only return jobs that have both a hiring team and a final_url set.
      - `min_num_jobs_found` integer, nullable — Minimum number of jobs matching `job_filters` a company must have to be returned (thresholds the `num_jobs_found` count). Requires `job_filters` with a date filter, so the count is always computed over the date-bounded set of matching jobs.
      - `tech_filters` KeywordFilters — Filter by technologies and buying intent topics detected for a company.
        - `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"
    - JobSearchFiltersOutput
      - `order_by` ColumnSortJobSearch[] — 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` 'date_posted' | 'discovered_at' | 'salary' | 'job_title' | 'company' | 'num_jobs' — Field to order by
      - `offset` integer — Number of results to skip. Required for [offset-based pagination](https://theirstack.com/en/docs/api-reference/pagination).
      - `page` integer — Page number. Required when using [page-based pagination](https://theirstack.com/en/docs/api-reference/pagination).
      - `limit` integer — Number of results per page
      - `job_title_or` string[] — Keyword-based patterns to match job titles. Case-insensitive. Returns jobs whose title contains all the words in any of the patterns, in any order. For example, `marketing vp` matches titles such as `VP of Marketing` or `Marketing VP, EMEA`. Passing `["software engineer", "data scientist"]` returns jobs matching either pattern.
      - `job_title_not` string[] — Keyword-based patterns to exclude job titles. Case-insensitive. Excludes jobs whose title contains all the words in any of the patterns, in any order. For example, `marketing vp` excludes titles such as `VP of Marketing` or `Marketing VP, EMEA`.
      - `job_title_pattern_and` string[] — Regex patterns to match job titles. Case-insensitive. Only jobs with title that match all of these patterns will be returned.
      - `job_title_pattern_or` string[] — Regex patterns to match job titles. Case-insensitive. Jobs whose job title matches of the filters will be returned.
      - `job_title_pattern_not` string[] — Regex patterns to match job titles. Case-insensitive. Jobs whose job title doesn't match any of the patterns will be returned.
      - `job_country_code_or` string[] — 2-letter ISO country code of the location of the job. Can pass more than 1
      - `job_country_code_not` string[] — 2-letter ISO country code of the location of the job. Can pass more than 1. Will exclude jobs from these countries
      - `posted_at_max_age_days` integer, nullable — Date posted max age in days. If 0, only return jobs posted today. If 1, from today and yesterday, etc.
      - `posted_at_gte` string, date, nullable — ISO 8601 date string (yyyy-mm-dd). Only jobs published in this date or after will be returned.
      - `posted_at_lte` string, date, nullable — ISO 8601 date string (yyyy-mm-dd). Only jobs published in this date or before will be returned.
      - `discovered_at_max_age_days` integer, nullable — If 0, only return jobs added to our database in the current day. If 1, from today and yesterday, etc.
      - `discovered_at_min_age_days` integer, nullable — If 1, only return jobs discovered by TheirStack until yesterday. If 2, until 2 days ago, etc.
      - `discovered_at_gte` union — Only jobs discovered by TheirStack on this date or datetime or after will be returned. In UTC timezone.
        - string, date-time
        - string, date
      - `discovered_at_lte` union — Only jobs discovered by TheirStack on this date or datetime or before will be returned. In UTC timezone.
        - string, date-time
        - string, date
      - `job_description_pattern_or` string[] — Regex patterns to look for in job descriptions. Case-sensitive. Results will include jobs whose description matches any of these patterns. Use (?i) at the start of a pattern to make it case-insensitive. Can pass more than one.
      - `job_description_pattern_not` string[] — Regex patterns to look for in job descriptions. Case-sensitive. Results will include jobs whose description don't match any of these patterns. Use (?i) at the start of a pattern to make it case-insensitive. Can pass more than one.
      - `job_description_pattern_and` string[] — Regex patterns that must ALL match the job description (AND logic). Use (?i) at the start of a pattern to make it case-insensitive. Results will only include jobs whose description matches every pattern in this list.
      - `job_description_pattern_is_case_insensitive` boolean, nullable — Deprecated. Has no effect.
      - `job_description_contains_or` string[] — Search for whole words in job descriptions using word boundaries (\b). Case-insensitive by default, except for the patterns that are uppercase - in that case we'll respect it. Only finds complete words (e.g., searching 'quality' won't match 'inequality'). Results will include jobs whose description contains any of these words.
      - `job_description_contains_not` string[] — Exclude jobs whose description contains any of these whole words using word boundaries (\b). Case-insensitive by default, except for the patterns that are uppercase - in that case we'll respect it. Only finds complete words (e.g., searching 'quality' won't match 'inequality'). Results will exclude jobs whose description contains any of these words.
      - `job_description_pattern_case_sensitive_or` string[] — Deprecated. Use job_description_pattern_or instead, which now behaves identically.
      - `remote` boolean, nullable — True: only show remote jobs. False: only show non-remote jobs. None: show all jobs.
      - `only_jobs_with_reports_to` boolean, nullable — Only return jobs where we identified the role the hired person would report to. Deprecated field, use reports_to_exists instead.
      - `reports_to_exists` boolean, nullable — Only return jobs where we identified the role the hired person would report to. If True, only return jobs where we identified the role the hired person would report to. If False, only return jobs where we didn't identify the role the hired person would report to. If None, return all jobs.
      - `final_url_exists` boolean, nullable — (Use `property_exists_or / property_exists_and` instead) Only return jobs with a final URL. Typically jobs that were originally posted on an ATS. If True, only return jobs with a final URL. If False, only return jobs without a final URL. If None, return all jobs.
      - `only_jobs_with_hiring_managers` boolean, nullable — Only return jobs with a hiring manager. If True, only return jobs with a hiring manager. If False, only return jobs without a hiring manager. If None, return all jobs.
      - `hiring_managers_exists` boolean, nullable — (Use `property_exists_or / property_exists_and` instead) If True, only return jobs with a hiring manager. If False, only return jobs without a hiring manager. If None, return all jobs.
      - `job_id_or` integer[] — Get jobs with these IDs only.
      - `job_id_not` integer[] — Exclude jobs with these IDs.
      - `job_ids` integer[] — Get jobs with these IDs only. Deprecated parameter, use job_id_or instead.
      - `job_seniority_or` string[] — Will return jobs where the seniority is any of the ones passed here
      - `min_salary_usd` number, nullable — Minimum annual salary in USD. For example, 100000 means $100,000.
      - `max_salary_usd` number, nullable — Maximum annual salary in USD. For example, 150000 means $150,000.
      - `job_technology_slug_or` string[] — Will return jobs where any of these technologies appear. Case sensitive. Pass slugs. Check out all the technologies we track with the technologies endpoint. If you pass more than one technology, we will return jobs that mentnion all of the technologies.
      - `job_technology_slug_not` string[] — Will return jobs where none of these technologies appear. Case sensitive. Pass slugs. Check out all the technologies we track with the technologies endpoint.
      - `job_technology_slug_and` string[] — Will return jobs where all of these technologies appear. Case sensitive. Pass slugs. Check out all the technologies we track with the technologies endpoint.
      - `job_keyword_slug_or` string[] — Will return jobs where any of these keyword slugs appear. Case sensitive. Check out all the keywords we track at [GET /v0/catalog/keywords](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_keywords_v0)
      - `job_keyword_slug_and` string[] — Will return jobs where all of these keyword slugs appear. Case sensitive. Check out all the keywords we track at [GET /v0/catalog/keywords](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_keywords_v0)
      - `job_keyword_slug_not` string[] — Will return jobs where none of these keyword slugs appear. Case sensitive. Check out all the keywords we track at [GET /v0/catalog/keywords](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_keywords_v0)
      - `job_location_pattern_or` string[] — Regex patterns to match job locations. Case-insensitive. Searches both the location field and the enhanced locations array (using normalized city and state name fields within each location element). Jobs matching ANY of the provided patterns will be returned. WARNING: Deprecated parameter. Use the `job_location_or` filter instead — it uses structured location IDs from the [locations catalog](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_locations_v0), which is more precise, supports hierarchical (country/region/city) and multi-language searches, has fewer false positives, and benefits from indexed lookups and recent accuracy fixes.
      - `job_location_pattern_not` string[] — Regex patterns to exclude job locations. Case-insensitive. Searches both the location field and the enhanced locations array (using normalized city and state name fields within each location element). Jobs matching ANY of the provided patterns will be EXCLUDED from results. WARNING: Deprecated parameter. Use the `job_location_not` filter instead — it uses structured location IDs from the [locations catalog](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_locations_v0), which is more precise, supports hierarchical (country/region/city) and multi-language searches, has fewer false positives, and benefits from indexed lookups and recent accuracy fixes.
      - `job_location_or` JobLocationFilter[] — Filter jobs by location. Returns jobs whose locations match ANY of the specified location criteria. Each location criteria is specified using a JobLocationFilter object. (You can find location IDs using the [locations catalog endpoint](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_locations_v0))
        - `id` integer, nullable — Filter by location id. You can discover all the locations from the locations catalog endpoint [GET /v0/catalog/locations](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_locations_v0)
      - `job_location_not` JobLocationFilter[] — Filter jobs by location. Returns jobs whose locations DO NOT match ANY of the specified location criteria. Each location criteria is specified using a JobLocationFilter object. (You can find location IDs using the [locations catalog endpoint](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_locations_v0))
        - `id` integer, nullable — Filter by location id. You can discover all the locations from the locations catalog endpoint [GET /v0/catalog/locations](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_locations_v0)
      - `url_domain_or` string[] — Include jobs only if their URL domain (from `url` or `source_url`) is in the provided case-insensitive list. For example, ['greenhouse.io', 'workable.com'] will match URLs containing 'greenhouse.io' or 'workable.com'. Refer to our list of sources at https://theirstack.com/en/docs/data/job/sources.
      - `url_domain_not` string[] — Exclude jobs if their URL domain (from `url` or `source_url`) is in the provided case-insensitive list. For example, ['greenhouse.io', 'workable.com'] will exclude URLs containing 'greenhouse.io' or 'workable.com'. Refer to our list of sources at https://theirstack.com/en/docs/data/job/sources.
      - `scraper_name_pattern_or` string[] — Regex patterns to match job sources. Case-insensitive.
      - `easy_apply` boolean, nullable — If True, only return jobs that can be applied directly through the job board. If False, only return jobs that require redirecting to the company's website.
      - `employment_statuses_or` Commitment[], nullable — Filter jobs by employment status. Returns jobs that match any of the specified employment types. If no values are provided or an empty list is sent, all jobs regardless of employment status will be returned.
      - `is_closed` boolean, nullable — If True, only return closed jobs (jobs where TheirStack detected the posting was closed). If False, only return open jobs. If None, return all jobs regardless of closure status.
      - `closed_at_gte` string, date, nullable — ISO 8601 date string (yyyy-mm-dd). Only return jobs closed on this date or after.
      - `closed_at_lte` string, date, nullable — ISO 8601 date string (yyyy-mm-dd). Only return jobs closed on this date or before.
      - `property_exists_or` string[] — Return jobs that have any of these fields not null. For example, if you pass ['final_url'], it will return jobs that have a final_url set. This field also support chaining of fields. For example, if you pass ['company_object.domain', 'company_object.linkedin_url'], it will return jobs that have a company domain or a company linkedin_url set.
      - `property_exists_and` string[]
      - `company_name_or` string[] — Only return companies that match these names exactly, case-sensitively. This filter acts as an OR filter, so if you pass more than one company name, it will return companies that match any of the names.
      - `company_name_case_insensitive_or` string[] — Only return companies that match these names exactly, case-insensitively.
      - `company_id_or` string[] — Only return companies that match these IDs exactly. This filter acts as an OR filter, so if you pass more than one company ID, it will return companies that match any of the IDs.
      - `company_id_not` string[] — Exclude companies that match these IDs. This filter acts as a NOT filter, so if you pass more than one company ID, it will exclude companies that match any of the IDs.
      - `company_domain_or` string[] — Only return companies that match these domains exactly. It accepts full urls (https://www.google.com/) and emails (john.polo@gmail.com). This filter acts as an OR filter, so if you pass more than one company domain, it will return companies that match any of the domains.
      - `company_domain_not` string[] — Only return companies that don't match these domains exactly. It accepts full urls (https://www.google.com/) and emails (john.polo@gmail.com).
      - `company_name_not` string[] — Only return companies that don't match these names exactly, case-sensitively.
      - `company_name_partial_match_or` string[] — Company names. Will return companies whose name contain any of the the substrings passed here, case-insensitively. For example, if you pass "google", it will return "Google", "Google LLC", "Google Inc", etc.
      - `company_name_partial_match_not` string[] — Company names. Will return companies whose name doesn't contain any of the the substrings passed here, case-insensitively. For example, if you pass 'google', it will exclude 'Google', 'Google LLC', 'Google Inc', etc.
      - `company_linkedin_url_or` string[] — Return companies whose LinkedIn page matches any of the values passed here. Both forms of LinkedIn company URL work — the vanity slug (`https://www.linkedin.com/company/google/`) and the numeric company ID (`https://www.linkedin.com/company/1038`) — as do a bare slug (`google`) and a bare numeric ID (`1038`). A numeric value is matched against the company's LinkedIn ID and its slug, so you do not need to know which of the two you are holding. We have a LinkedIn slug for ~26% of companies and a numeric LinkedIn ID for ~14%, so if you have the company's domain, `company_domain_or` matches more often.
      - `blur_company_data` boolean — Enable preview mode to return blurred data without consuming API credits. When enabled, sensitive company fields (name, domain, URLs, descriptions) and job-specific fields (description, URLs) are blurred. This mode is useful for sales software integrations to show data previews to end users. Not available when filtering by company identifiers (company_name, company_domain, company_linkedin_url, company_id). Learn more about [here](https://theirstack.com/en/docs/api/preview-data-mode)
      - `company_description_pattern_or` string[] — Case-insensitive patterns to match in the company description. Will return companies that match any of the patterns.
      - `company_description_pattern_not` string[] — Case-insensitive patterns to match in the company description. Will return companies that match any of the patterns.
      - `company_description_pattern_accent_insensitive` boolean, nullable — Set to True to make company description searches accent insensitive. For example, "á" will match "a" as well.
      - `min_revenue_usd` integer, nullable — Minimum company revenue, in USD
      - `max_revenue_usd` integer, nullable — Maximum company revenue, in USD
      - `min_employee_count` integer, nullable — Minimum number of employees in a company
      - `max_employee_count` integer, nullable — Maximum number of employees in a company
      - `min_employee_count_or_null` integer, nullable — Minimum number of employees in a company. If we don't have company size information, we will return it as well.
      - `max_employee_count_or_null` integer, nullable — Maximum number of employees in a company. If we don't have company size information, we will return it as well.
      - `min_funding_usd` integer, nullable — Minimum company funding, in USD
      - `max_funding_usd` integer, nullable — Maximum company funding, in USD
      - `funding_stage_or` string[] — Funding stages of companies returned. Possible values: ['angel', 'convertible_note', 'debt_financing', 'equity_crowdfunding', 'other', 'private_equity', 'seed', 'series_a', 'series_b', 'series_c', 'series_d', 'series_e', 'series_f', 'series_g', 'series_h', 'venture_round_not_specified', 'series_i', 'series_j', 'undisclosed', 'series_unknown', 'pre_seed', 'post_ipo_secondary', 'post_ipo_equity', 'post_ipo_debt', 'non_equity_assistance', 'late_vc', 'initial_coin_offering', 'growth_equity_vc', 'grant', 'early_vc', 'corporate_round', 'secondary_market', 'product_crowdfunding']
      - `industry_or` string[] — Names of industries, case-insensitive. Results will only include companies that belong to any of the industries specified in this parameter. Available values: [GET /v0/catalog/industries](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_industries_v0) WARNING: Deprecated parameter. Use the industry_id_or field instead.
      - `industry_not` string[] — Names of industries, case-insensitive. Results will exclude companies that belong to any of the industries specified in this parameter. Available values: [GET /v0/catalog/industries](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_industries_v0) WARNING: Deprecated parameter. Use the industry_id_not field instead.
      - `industry_id_or` integer[] — Industry codes. You can use any of [LinkedIn's Industry Codes V2](https://learn.microsoft.com/en-us/linkedin/shared/references/reference-tables/industry-codes-v2) or [GET /v0/catalog/industries](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_industries_v0)
      - `industry_id_not` integer[] — Industry ids to exclude.You can use any of [LinkedIn's Industry Codes V2](https://learn.microsoft.com/en-us/linkedin/shared/references/reference-tables/industry-codes-v2) or [GET /v0/catalog/industries](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_industries_v0)
      - `industry_id_not_or_null` integer[] — Industry ids to exclude. Companies whose industry we don't know are returned as well. You can use any of [LinkedIn's Industry Codes V2](https://learn.microsoft.com/en-us/linkedin/shared/references/reference-tables/industry-codes-v2) or [GET /v0/catalog/industries](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_industries_v0)
      - `company_tags_or` string[] — Return companies that match any of these keywords
      - `company_type` 'recruiting_agency' | 'direct_employer' | 'all', nullable — Filter by company type.
      - `company_investors_or` string[] — Investors of the company
      - `company_investors_partial_match_or` string[] — Investors of the company. Will return companies for which any of their investors contains any of the substrings passed here. For example, if you pass 'andree', all funds that match it (like 'Andreessen Horowitz', 'Andreessen Horowitz LLC', etc).
      - `company_technology_slug_or` string[] — Will return jobs from companies that that have mentioned any of these technologies in their jobs (not necessarily in the jobs returned). Case sensitive. Pass slugs. Check out all the technologies we track at [GET /v0/catalog/technologies](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_technologies_v0)
      - `company_technology_slug_and` string[] — Will return jobs from companies that that have mentioned all of these technologies in their jobs (not necessarily in the jobs returned). Case sensitive. Pass slugs. Check out all the technologies we track at [GET /v0/catalog/technologies](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_technologies_v0)
      - `company_technology_slug_not` string[] — Will return jobs from companies that that haven't mentioned any of these technologies in their jobs. Case sensitive. Pass slugs. Check out all the technologies we track at [GET /v0/catalog/technologies](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_technologies_v0)
      - `company_keyword_slug_or` string[] — Return results from companies that have mentioned any of these keywords in their jobs. Case sensitive. Pass slugs. Check out all the keywords we track at [GET /v0/catalog/keywords](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_keywords_v0)
      - `company_keyword_slug_and` string[] — Return results from companies that have mentioned all of these keywords in their jobs. Case sensitive. Pass slugs. Check out all the keywords we track at [GET /v0/catalog/keywords](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_keywords_v0)
      - `company_keyword_slug_not` string[] — Return results from companies that haven't mentioned any of these keywords in their jobs. Case sensitive. Pass slugs. Check out all the keywords we track at [GET /v0/catalog/keywords](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_keywords_v0)
      - `only_yc_companies` boolean, nullable — Only return YC companies
      - `company_location_pattern_or` string[] — Return companies whose city matches any of the patterns passed here. Case insensitive. For example, if you pass 'san francisco', it will return companies whose city is 'San Francisco', 'San Francisco Bay Area', etc.
      - `company_country_code_or` string[] — Return companies whose HQ country code is any of the ones passed here, case sensitive. Pass ISO2 country codes.
      - `company_country_code_not` string[] — Return companies whose HQ country code is not any of the ones passed here, case sensitive. Pass ISO2 country codes.
      - `company_country_code_not_or_null` string[] — Return companies whose HQ country code is not any of the ones passed here, case sensitive. Companies whose country we don't know are returned as well. Pass ISO2 country codes.
      - `company_list_id_or` integer[] — Return companies that belong to any of the company lists passed here
      - `company_list_id_not` integer[] — Return companies that don't belong to any of the company lists passed here
      - `company_linkedin_url_exists` boolean, nullable — (Use `property_exists_or / property_exists_and` instead) Only return companies with a LinkedIn URL
      - `revealed_company_data` boolean, nullable — This field is deprecated and has no effect.
      - `last_funding_round_date_lte` string, date, nullable — Only return companies whose last funding round date is before or on this date. Format: 'YYYY-MM-DD'
      - `last_funding_round_date_gte` string, date, nullable — Only return companies whose last funding round date is after or on this date. Format: 'YYYY-MM-DD'
      - `include_total_results` boolean — 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.
  - `is_alert_active` boolean — Is the alert active
  - `user_id` integer, required — Owner of the saved search
  - `team_id` integer, required — Team of the saved search
  - `created_at` string, date-time, required — Date and time when the saved search was created
  - `updated_at` string, date-time, required — Date and time when the saved search was last updated
  - `query` string, nullable — Query of the request
  - `path` string, nullable — Path of the request
  - `querystring_params` object, nullable — Dictionary containing the querystring parameters of the request.
  - `creator` UserSimple, required
    - `id` integer, required
    - `email` string, required — The user's email address
    - `first_name` string, nullable — The user's first name
    - `last_name` string, nullable — The user's last name
  - `is_archived` boolean — Is the saved search archived
  - `has_active_webhooks` boolean — Has active webhooks
  - `frequency` 'daily' | 'weekly'
  - `emails_subscribed` string[], nullable — Emails subscribed to the saved search alerts.

## 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)
