payload.order_by | array | No | [{"desc":true,"field":"date_posted"},{"desc":true,"field":"discovered_at"}] | 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. |
payload.offset | integer | No | 0 | Number of results to skip. Required for offset-based pagination. |
payload.page | integer | No | 0 | Page number. Required when using page-based pagination. |
payload.limit | integer | No | 25 | Number of results per page. Maximum 500 per page; use page to fetch additional pages. |
payload.cursor | string | No | | Cursor for pagination |
payload.job_title_or | array | No | [] | Natural language patterns to match job titles. Case-insensitive. Only jobs with title that match any of these patterns will be returned. Uses Postgres full text search. |
payload.job_title_not | array | No | [] | Natural language patterns to match job titles. Case-insensitive. Only jobs with title that do not match any of these patterns will be returned. Uses Postgres full text search. |
payload.job_title_pattern_and | array | No | [] | Regex patterns to match job titles. Case-insensitive. Only jobs with title that match all of these patterns will be returned. |
payload.job_title_pattern_or | array | No | [] | Regex patterns to match job titles. Case-insensitive. Jobs whose job title matches of the filters will be returned. |
payload.job_title_pattern_not | array | No | [] | Regex patterns to match job titles. Case-insensitive. Jobs whose job title doesn’t match any of the patterns will be returned. |
payload.job_country_code_or | array | No | [] | 2-letter ISO country code of the location of the job. Can pass more than 1 |
payload.job_country_code_not | array | No | [] | 2-letter ISO country code of the location of the job. Can pass more than 1. Will exclude jobs from these countries |
payload.posted_at_max_age_days | integer | No | | Date posted max age in days. If 0, only return jobs posted today. If 1, from today and yesterday, etc. |
payload.posted_at_gte | string | No | | ISO 8601 date string (yyyy-mm-dd). Only jobs published in this date or after will be returned. |
payload.posted_at_lte | string | No | | ISO 8601 date string (yyyy-mm-dd). Only jobs published in this date or before will be returned. |
payload.discovered_at_max_age_days | integer | No | | If 0, only return jobs added to our database in the current day. If 1, from today and yesterday, etc. |
payload.discovered_at_min_age_days | integer | No | | If 1, only return jobs discovered by TheirStack until yesterday. If 2, until 2 days ago, etc. |
payload.discovered_at_gte | string | null | No | | Only jobs discovered by TheirStack on this date or datetime or after will be returned. In UTC timezone. |
payload.discovered_at_lte | string | null | No | | Only jobs discovered by TheirStack on this date or datetime or before will be returned. In UTC timezone. |
payload.job_description_pattern_or | array | No | [] | 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. |
payload.job_description_pattern_not | array | No | [] | 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. |
payload.job_description_pattern_and | array | No | [] | 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. |
payload.job_description_pattern_is_case_insensitive | boolean | No | true | Deprecated. Has no effect. |
payload.job_description_contains_or | array | No | [] | 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. |
payload.job_description_contains_not | array | No | [] | 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. |
payload.job_description_pattern_case_sensitive_or | array | No | [] | Deprecated. Use job_description_pattern_or instead, which now behaves identically. |
payload.remote | boolean | No | | True: only show remote jobs. False: only show non-remote jobs. None: show all jobs. |
payload.only_jobs_with_reports_to | boolean | No | | Only return jobs where we identified the role the hired person would report to. Deprecated field, use reports_to_exists instead. |
payload.reports_to_exists | boolean | No | | 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. |
payload.final_url_exists | boolean | No | | (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. |
payload.only_jobs_with_hiring_managers | boolean | No | | 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. |
payload.hiring_managers_exists | boolean | No | | (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. |
payload.job_id_or | array | No | [] | Get jobs with these IDs only. |
payload.job_id_not | array | No | [] | Exclude jobs with these IDs. |
payload.job_ids | array | No | [] | Get jobs with these IDs only. Deprecated parameter, use job_id_or instead. |
payload.job_seniority_or | array | No | [] | Will return jobs where the seniority is any of the ones passed here |
payload.min_salary_usd | number | No | | Minimum annual salary in USD. For example, 100000 means $100,000. |
payload.max_salary_usd | number | No | | Maximum annual salary in USD. For example, 150000 means $150,000. |
payload.job_technology_slug_or | array | No | [] | 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. |
payload.job_technology_slug_not | array | No | [] | Will return jobs where none of these technologies appear. Case sensitive. Pass slugs. Check out all the technologies we track with the technologies endpoint. |
payload.job_technology_slug_and | array | No | [] | Will return jobs where all of these technologies appear. Case sensitive. Pass slugs. Check out all the technologies we track with the technologies endpoint. |
payload.job_keyword_slug_or | array | No | [] | Will return jobs where any of these keyword slugs appear. Case sensitive. Check out all the keywords we track at GET /v0/catalog/keywords |
payload.job_keyword_slug_and | array | No | [] | Will return jobs where all of these keyword slugs appear. Case sensitive. Check out all the keywords we track at GET /v0/catalog/keywords |
payload.job_keyword_slug_not | array | No | [] | Will return jobs where none of these keyword slugs appear. Case sensitive. Check out all the keywords we track at GET /v0/catalog/keywords |
payload.job_location_pattern_or | array | No | [] | 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. Use this to find jobs in specific cities, states, or regions. |
payload.job_location_pattern_not | array | No | [] | 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. Use this to filter out specific locations. |
payload.job_location_or | array | No | [] | 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) |
payload.job_location_not | array | No | [] | 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) |
payload.url_domain_or | array | No | [] | 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. |
payload.url_domain_not | array | No | [] | 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. |
payload.scraper_name_pattern_or | array | No | [] | Regex patterns to match job sources. Case-insensitive. |
payload.easy_apply | boolean | No | | 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. |
payload.employment_statuses_or | array | No | | 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. |
payload.company_name_or | array | No | [] | 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. |
payload.company_name_case_insensitive_or | array | No | [] | Only return companies that match these names exactly, case-insensitively. |
payload.company_id_or | array | No | [] | 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. |
payload.company_domain_or | array | No | [] | 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. |
payload.company_domain_not | array | No | [] | Only return companies that don’t match these domains exactly. It accepts full urls (https://www.google.com/) and emails (john.polo@gmail.com). |
payload.company_name_not | array | No | [] | Only return companies that don’t match these names exactly, case-sensitively. |
payload.company_name_partial_match_or | array | No | [] | 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. |
payload.company_name_partial_match_not | array | No | [] | 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. |
payload.company_linkedin_url_or | array | No | [] | Return companies whose LinkedIn URL matches any of the slugs passed here. Can also pass full LinkedIn company URLs. |
payload.blur_company_data | boolean | No | false | 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 |
payload.property_exists_or | array | No | [] | 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. |
payload.property_exists_and | array | No | [] | |
payload.company_description_pattern_or | array | No | [] | Case-insensitive patterns to match in the company description. Will return companies that match any of the patterns. |
payload.company_description_pattern_not | array | No | [] | Case-insensitive patterns to match in the company description. Will return companies that match any of the patterns. |
payload.company_description_pattern_accent_insensitive | boolean | No | false | Set to True to make company description searches accent insensitive. For example, “á” will match “a” as well. |
payload.min_revenue_usd | integer | No | | Minimum company revenue, in USD |
payload.max_revenue_usd | integer | No | | Maximum company revenue, in USD |
payload.min_employee_count | integer | No | | Minimum number of employees in a company |
payload.max_employee_count | integer | No | | Maximum number of employees in a company |
payload.min_employee_count_or_null | integer | No | | Minimum number of employees in a company. If we don’t have company size information, we will return it as well. |
payload.max_employee_count_or_null | integer | No | | Maximum number of employees in a company. If we don’t have company size information, we will return it as well. |
payload.min_funding_usd | integer | No | | Minimum company funding, in USD |
payload.max_funding_usd | integer | No | | Maximum company funding, in USD |
payload.funding_stage_or | array | No | [] | 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’] |
payload.industry_or | array | No | [] | 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 WARNING: Deprecated parameter. Use the industry_id_or field instead. |
payload.industry_not | array | No | [] | 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 WARNING: Deprecated parameter. Use the industry_id_not field instead. |
payload.industry_id_or | array | No | [] | Industry codes. You can use any of LinkedIn’s Industry Codes V2 or GET /v0/catalog/industries |
payload.industry_id_not | array | No | [] | Industry ids to exclude.You can use any of LinkedIn’s Industry Codes V2 or GET /v0/catalog/industries |
payload.company_tags_or | array | No | [] | Return companies that match any of these keywords |
payload.company_type | "recruiting_agency" | "direct_employer" | "all" | No | | Filter by company type. |
payload.company_investors_or | array | No | [] | Investors of the company |
payload.company_investors_partial_match_or | array | No | [] | 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). |
payload.company_technology_slug_or | array | No | [] | 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. Deprecated: use company_keyword_slug_or instead. |
payload.company_technology_slug_and | array | No | [] | 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. Deprecated: use company_keyword_slug_and instead. |
payload.company_technology_slug_not | array | No | [] | 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. Deprecated: use company_keyword_slug_not instead. |
payload.company_keyword_slug_or | array | No | [] | 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 |
payload.company_keyword_slug_and | array | No | [] | 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 |
payload.company_keyword_slug_not | array | No | [] | 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 |
payload.only_yc_companies | boolean | No | false | Only return YC companies |
payload.company_location_pattern_or | array | No | [] | 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. |
payload.company_country_code_or | array | No | [] | Return companies whose HQ country code is any of the ones passed here, case sensitive. Pass ISO2 country codes. |
payload.company_country_code_not | array | No | [] | Return companies whose HQ country code is not any of the ones passed here, case sensitive. Pass ISO2 country codes. |
payload.company_list_id_or | array | No | [] | Return companies that belong to any of the company lists passed here |
payload.company_list_id_not | array | No | [] | Return companies that don’t belong to any of the company lists passed here |
payload.company_linkedin_url_exists | boolean | No | | (Use property_exists_or / property_exists_and instead) Only return companies with a LinkedIn URL |
payload.revealed_company_data | boolean | No | | This field is deprecated and has no effect. |
payload.last_funding_round_date_lte | string | No | | Only return companies whose last funding round date is before or on this date. Format: ‘YYYY-MM-DD’ |
payload.last_funding_round_date_gte | string | No | | Only return companies whose last funding round date is after or on this date. Format: ‘YYYY-MM-DD’ |
payload.include_total_results | boolean | No | false | When enabled, calculates and returns total_results and total_companies fields in the response. WARNING: This significantly slows down responses as it requires reading the entire dataset. Recommended usage: enable only for the initial request to get totals, then disable for subsequent pagination requests. |