> ## Documentation Index
> Fetch the complete documentation index at: https://deepline.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Theirstack Job Search: Inputs, Cost & CLI Example

> Finding job postings across many countries with company and technology filters. Includes inputs, outputs, costs, and Deepline CLI examples for GTM automation.

## Run in Enrichment Spreadsheet

<Info>
  Use this function as a column step in `deepline enrich`.
</Info>

```bash theme={null}
deepline enrich --input leads.csv --output leads.enriched.csv --with 'result=theirstack_job_search:{}' --json
```

<Tip>
  Map payload values to spreadsheet columns with `{{column_name}}` placeholders.
</Tip>

## Input Schema

| Name                                                     | Type                                                | Required | Default                                                                                           | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| -------------------------------------------------------- | --------------------------------------------------- | -------- | ------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `payload.order_by`                                       | `array`                                             | No       | `[&#123;"desc":true,"field":"date_posted"&#125;,&#123;"desc":true,"field":"discovered_at"&#125;]` | 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](https://theirstack.com/en/docs/api-reference/pagination).                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| `payload.page`                                           | `integer`                                           | No       | `0`                                                                                               | Page number. Required when using [page-based pagination](https://theirstack.com/en/docs/api-reference/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](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_keywords_v0)                                                                                                                                                                                                                                                                                                                                                                                                                |
| `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](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_keywords_v0)                                                                                                                                                                                                                                                                                                                                                                                                                |
| `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](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_keywords_v0)                                                                                                                                                                                                                                                                                                                                                                                                               |
| `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](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_locations_v0))                                                                                                                                                                                                                                                                                                              |
| `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](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_locations_v0))                                                                                                                                                                                                                                                                                                       |
| `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](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](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/](https://www.google.com/)) and emails ([john.polo@gmail.com](mailto: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/](https://www.google.com/)) and emails ([john.polo@gmail.com](mailto: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](https://theirstack.com/en/docs/api/preview-data-mode)                                                                                                                            |
| `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](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_industries_v0) 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](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_industries_v0) 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](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)                                                                                                                                                                                                                                                                                                                                                       |
| `payload.industry_id_not`                                | `array`                                             | No       | `[]`                                                                                              | 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)                                                                                                                                                                                                                                                                                                                                               |
| `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](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_technologies_v0). 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](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_technologies_v0). 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](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_technologies_v0). 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](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_keywords_v0)                                                                                                                                                                                                                                                                                                                                                                       |
| `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](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_keywords_v0)                                                                                                                                                                                                                                                                                                                                                                       |
| `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](https://theirstack.com/en/docs/api-reference/catalog/get_catalog_keywords_v0)                                                                                                                                                                                                                                                                                                                                                                    |
| `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.                                                                                                                                                                                                                                                                                                                    |

### Allowed values

| Field                  | Allowed values                                |
| ---------------------- | --------------------------------------------- |
| `payload.company_type` | `recruiting_agency`, `direct_employer`, `all` |

<details>
  <summary>Show raw input schema</summary>

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "This endpoint lets you search for jobs posted on thousands of websites and filter by multiple filters, such as job titles, companies, locations, company attributes, dates and many more. It consumes **1 API credit** for each job returned in the response. You must specify at least one of the following filters, or otherwise your request will fail: `posted_at_max_age_days`, `posted_at_gte`, `posted_at_lte`, `company_domain_or`, `company_linkedin_url_or`, `company_name_or`. This is for performance reasons. To retrieve jobs from a specific company or a list of companies, you can apply any of the following filters: `company_domain_or`, `company_linkedin_url_or`, `company_name_or`, `company_name_case_insensitive_or`. When using multiple company identifier filters, the endpoint will return jobs from companies that match any of the specified identifiers. Therefore, it is advisable to create a separate request for each company if you intend to use more than one identifier. This endpoint is used by job seekers and sales/marketing teams to search for jobs filtered by country, job title, technologies, job description, company name, company domain, or date range—see the payload examples below for specific use cases. Useful resources: [Avoiding getting the same job twice](https://theirstack.com/en/docs/api/avoid-getting-same-jobs-twice), [Fetching jobs periodically](https://theirstack.com/en/docs/guides/fetch-jobs-periodically), [Preview data mode](https://theirstack.com/en/docs/api/preview-data-mode), [Free count mode](https://theirstack.com/en/docs/api/free-count)",
    "properties": {
      "order_by": {
        "type": "array",
        "description": "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.",
        "default": [
          {
            "desc": true,
            "field": "date_posted"
          },
          {
            "desc": true,
            "field": "discovered_at"
          }
        ],
        "items": {
          "type": "object",
          "properties": {
            "desc": {
              "type": "boolean",
              "description": "Whether to order by descending or ascending values",
              "default": true
            },
            "field": {
              "type": "string",
              "description": "Field to order by",
              "default": "date_posted",
              "enum": [
                "date_posted",
                "discovered_at",
                "salary",
                "job_title",
                "company",
                "num_jobs"
              ]
            }
          },
          "additionalProperties": false
        }
      },
      "offset": {
        "type": "integer",
        "description": "Number of results to skip. Required for [offset-based pagination](https://theirstack.com/en/docs/api-reference/pagination).",
        "default": 0,
        "minimum": 0
      },
      "page": {
        "type": "integer",
        "description": "Page number. Required when using [page-based pagination](https://theirstack.com/en/docs/api-reference/pagination).",
        "default": 0,
        "minimum": 0
      },
      "limit": {
        "type": "integer",
        "description": "Number of results per page. Maximum 500 per page; use `page` to fetch additional pages.",
        "default": 25,
        "minimum": 1
      },
      "cursor": {
        "type": [
          "string",
          "null"
        ],
        "description": "Cursor for pagination"
      },
      "job_title_or": {
        "type": "array",
        "description": "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.",
        "default": [],
        "items": {
          "type": "string"
        }
      },
      "job_title_not": {
        "type": "array",
        "description": "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.",
        "default": [],
        "items": {
          "type": "string"
        }
      },
      "job_title_pattern_and": {
        "type": "array",
        "description": "Regex patterns to match job titles. Case-insensitive. Only jobs with title that match all of these patterns will be returned.",
        "default": [],
        "items": {
          "type": "string"
        }
      },
      "job_title_pattern_or": {
        "type": "array",
        "description": "Regex patterns to match job titles. Case-insensitive. Jobs whose job title matches of the filters will be returned.",
        "default": [],
        "items": {
          "type": "string"
        }
      },
      "job_title_pattern_not": {
        "type": "array",
        "description": "Regex patterns to match job titles. Case-insensitive. Jobs whose job title doesn't match any of the patterns will be returned.",
        "default": [],
        "items": {
          "type": "string"
        }
      },
      "job_country_code_or": {
        "type": "array",
        "description": "2-letter ISO country code of the location of the job. Can pass more than 1",
        "default": [],
        "items": {
          "type": "string"
        }
      },
      "job_country_code_not": {
        "type": "array",
        "description": "2-letter ISO country code of the location of the job. Can pass more than 1. Will exclude jobs from these countries",
        "default": [],
        "items": {
          "type": "string"
        }
      },
      "posted_at_max_age_days": {
        "type": [
          "integer",
          "null"
        ],
        "description": "Date posted max age in days. If 0, only return jobs posted today. If 1, from today and yesterday, etc."
      },
      "posted_at_gte": {
        "type": [
          "string",
          "null"
        ],
        "description": "ISO 8601 date string (yyyy-mm-dd). Only jobs published in this date or after will be returned.",
        "format": "date"
      },
      "posted_at_lte": {
        "type": [
          "string",
          "null"
        ],
        "description": "ISO 8601 date string (yyyy-mm-dd). Only jobs published in this date or before will be returned.",
        "format": "date"
      },
      "discovered_at_max_age_days": {
        "type": [
          "integer",
          "null"
        ],
        "description": "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": {
        "type": [
          "integer",
          "null"
        ],
        "description": "If 1, only return jobs discovered by TheirStack until yesterday. If 2, until 2 days ago, etc."
      },
      "discovered_at_gte": {
        "description": "Only jobs discovered by TheirStack on this date or datetime or after will be returned. In UTC timezone.",
        "anyOf": [
          {
            "type": "string",
            "format": "date-time"
          },
          {
            "type": "string",
            "format": "date"
          },
          {
            "type": "null"
          }
        ]
      },
      "discovered_at_lte": {
        "description": "Only jobs discovered by TheirStack on this date or datetime or before will be returned. In UTC timezone.",
        "anyOf": [
          {
            "type": "string",
            "format": "date-time"
          },
          {
            "type": "string",
            "format": "date"
          },
          {
            "type": "null"
          }
        ]
      },
      "job_description_pattern_or": {
        "type": "array",
        "description": "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.",
        "default": [],
        "items": {
          "type": "string"
        }
      },
      "job_description_pattern_not": {
        "type": "array",
        "description": "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.",
        "default": [],
        "items": {
          "type": "string"
        }
      },
      "job_description_pattern_and": {
        "type": "array",
        "description": "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.",
        "default": [],
        "items": {
          "type": "string"
        }
      },
      "job_description_pattern_is_case_insensitive": {
        "type": [
          "boolean",
          "null"
        ],
        "description": "Deprecated. Has no effect.",
        "default": true
      },
      "job_description_contains_or": {
        "type": "array",
        "description": "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.",
        "default": [],
        "items": {
          "type": "string"
        }
      },
      "job_description_contains_not": {
        "type": "array",
        "description": "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.",
        "default": [],
        "items": {
          "type": "string"
        }
      },
      "job_description_pattern_case_sensitive_or": {
        "type": "array",
        "description": "Deprecated. Use job_description_pattern_or instead, which now behaves identically.",
        "default": [],
        "items": {
          "type": "string"
        }
      },
      "remote": {
        "type": [
          "boolean",
          "null"
        ],
        "description": "True: only show remote jobs. False: only show non-remote jobs. None: show all jobs."
      },
      "only_jobs_with_reports_to": {
        "type": [
          "boolean",
          "null"
        ],
        "description": "Only return jobs where we identified the role the hired person would report to. Deprecated field, use reports_to_exists instead."
      },
      "reports_to_exists": {
        "type": [
          "boolean",
          "null"
        ],
        "description": "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": {
        "type": [
          "boolean",
          "null"
        ],
        "description": "(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": {
        "type": [
          "boolean",
          "null"
        ],
        "description": "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": {
        "type": [
          "boolean",
          "null"
        ],
        "description": "(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": {
        "type": "array",
        "description": "Get jobs with these IDs only.",
        "default": [],
        "items": {
          "type": "integer"
        }
      },
      "job_id_not": {
        "type": "array",
        "description": "Exclude jobs with these IDs.",
        "default": [],
        "items": {
          "type": "integer"
        }
      },
      "job_ids": {
        "type": "array",
        "description": "Get jobs with these IDs only. Deprecated parameter, use job_id_or instead.",
        "default": [],
        "items": {
          "type": "integer"
        }
      },
      "job_seniority_or": {
        "type": "array",
        "description": "Will return jobs where the seniority is any of the ones passed here",
        "default": [],
        "items": {
          "type": "string",
          "enum": [
            "c_level",
            "staff",
            "senior",
            "junior",
            "mid_level"
          ]
        }
      },
      "min_salary_usd": {
        "type": [
          "number",
          "null"
        ],
        "description": "Minimum annual salary in USD. For example, 100000 means $100,000."
      },
      "max_salary_usd": {
        "type": [
          "number",
          "null"
        ],
        "description": "Maximum annual salary in USD. For example, 150000 means $150,000."
      },
      "job_technology_slug_or": {
        "type": "array",
        "description": "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.",
        "default": [],
        "items": {
          "type": "string"
        }
      },
      "job_technology_slug_not": {
        "type": "array",
        "description": "Will return jobs where none of these technologies appear. Case sensitive. Pass slugs. Check out all the technologies we track with the technologies endpoint.",
        "default": [],
        "items": {
          "type": "string"
        }
      },
      "job_technology_slug_and": {
        "type": "array",
        "description": "Will return jobs where all of these technologies appear. Case sensitive. Pass slugs. Check out all the technologies we track with the technologies endpoint.",
        "default": [],
        "items": {
          "type": "string"
        }
      },
      "job_keyword_slug_or": {
        "type": "array",
        "description": "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)",
        "default": [],
        "items": {
          "type": "string"
        }
      },
      "job_keyword_slug_and": {
        "type": "array",
        "description": "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)",
        "default": [],
        "items": {
          "type": "string"
        }
      },
      "job_keyword_slug_not": {
        "type": "array",
        "description": "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)",
        "default": [],
        "items": {
          "type": "string"
        }
      },
      "job_location_pattern_or": {
        "type": "array",
        "description": "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.",
        "default": [],
        "items": {
          "type": "string"
        }
      },
      "job_location_pattern_not": {
        "type": "array",
        "description": "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.",
        "default": [],
        "items": {
          "type": "string"
        }
      },
      "job_location_or": {
        "type": "array",
        "description": "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))",
        "default": [],
        "items": {
          "type": "object",
          "properties": {
            "id": {
              "type": [
                "integer",
                "null"
              ],
              "description": "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)"
            }
          },
          "additionalProperties": false
        }
      },
      "job_location_not": {
        "type": "array",
        "description": "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))",
        "default": [],
        "items": {
          "type": "object",
          "properties": {
            "id": {
              "type": [
                "integer",
                "null"
              ],
              "description": "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)"
            }
          },
          "additionalProperties": false
        }
      },
      "url_domain_or": {
        "type": "array",
        "description": "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.",
        "default": [],
        "items": {
          "type": "string"
        }
      },
      "url_domain_not": {
        "type": "array",
        "description": "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.",
        "default": [],
        "items": {
          "type": "string"
        }
      },
      "scraper_name_pattern_or": {
        "type": "array",
        "description": "Regex patterns to match job sources. Case-insensitive.",
        "default": [],
        "items": {
          "type": "string"
        }
      },
      "easy_apply": {
        "type": [
          "boolean",
          "null"
        ],
        "description": "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": {
        "type": [
          "array",
          "null"
        ],
        "description": "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.",
        "items": {
          "type": "string",
          "enum": [
            "full_time",
            "part_time",
            "temporary",
            "internship",
            "contract",
            "freelance",
            "co_founder",
            "apprenticeship",
            "seasonal",
            "volunteer",
            "other"
          ]
        }
      },
      "company_name_or": {
        "type": "array",
        "description": "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.",
        "default": [],
        "items": {
          "type": "string"
        }
      },
      "company_name_case_insensitive_or": {
        "type": "array",
        "description": "Only return companies that match these names exactly, case-insensitively.",
        "default": [],
        "items": {
          "type": "string"
        }
      },
      "company_id_or": {
        "type": "array",
        "description": "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.",
        "default": [],
        "items": {
          "type": "string"
        }
      },
      "company_domain_or": {
        "type": "array",
        "description": "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.",
        "default": [],
        "items": {
          "type": "string"
        }
      },
      "company_domain_not": {
        "type": "array",
        "description": "Only return companies that don't match these domains exactly. It accepts full urls (https://www.google.com/) and emails (john.polo@gmail.com).",
        "default": [],
        "items": {
          "type": "string"
        }
      },
      "company_name_not": {
        "type": "array",
        "description": "Only return companies that don't match these names exactly, case-sensitively.",
        "default": [],
        "items": {
          "type": "string"
        }
      },
      "company_name_partial_match_or": {
        "type": "array",
        "description": "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.",
        "default": [],
        "items": {
          "type": "string"
        }
      },
      "company_name_partial_match_not": {
        "type": "array",
        "description": "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.",
        "default": [],
        "items": {
          "type": "string"
        }
      },
      "company_linkedin_url_or": {
        "type": "array",
        "description": "Return companies whose LinkedIn URL matches any of the slugs passed here. Can also pass full LinkedIn company URLs.",
        "default": [],
        "items": {
          "type": "string"
        }
      },
      "blur_company_data": {
        "type": "boolean",
        "description": "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)",
        "default": false
      },
      "property_exists_or": {
        "type": "array",
        "description": "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.",
        "default": [],
        "items": {
          "type": "string",
          "enum": [
            "company_object.domain",
            "company_object.linkedin_url",
            "final_url",
            "hiring_team",
            "employment_statuses"
          ]
        }
      },
      "property_exists_and": {
        "type": "array",
        "default": [],
        "items": {
          "type": "string",
          "enum": [
            "company_object.domain",
            "company_object.linkedin_url",
            "final_url",
            "hiring_team",
            "employment_statuses"
          ]
        }
      },
      "company_description_pattern_or": {
        "type": "array",
        "description": "Case-insensitive patterns to match in the company description. Will return companies that match any of the patterns.",
        "default": [],
        "items": {
          "type": "string"
        }
      },
      "company_description_pattern_not": {
        "type": "array",
        "description": "Case-insensitive patterns to match in the company description. Will return companies that match any of the patterns.",
        "default": [],
        "items": {
          "type": "string"
        }
      },
      "company_description_pattern_accent_insensitive": {
        "type": [
          "boolean",
          "null"
        ],
        "description": "Set to True to make company description searches accent insensitive. For example, \"á\" will match \"a\" as well.",
        "default": false
      },
      "min_revenue_usd": {
        "type": [
          "integer",
          "null"
        ],
        "description": "Minimum company revenue, in USD"
      },
      "max_revenue_usd": {
        "type": [
          "integer",
          "null"
        ],
        "description": "Maximum company revenue, in USD"
      },
      "min_employee_count": {
        "type": [
          "integer",
          "null"
        ],
        "description": "Minimum number of employees in a company"
      },
      "max_employee_count": {
        "type": [
          "integer",
          "null"
        ],
        "description": "Maximum number of employees in a company"
      },
      "min_employee_count_or_null": {
        "type": [
          "integer",
          "null"
        ],
        "description": "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": {
        "type": [
          "integer",
          "null"
        ],
        "description": "Maximum number of employees in a company. If we don't have company size information, we will return it as well."
      },
      "min_funding_usd": {
        "type": [
          "integer",
          "null"
        ],
        "description": "Minimum company funding, in USD"
      },
      "max_funding_usd": {
        "type": [
          "integer",
          "null"
        ],
        "description": "Maximum company funding, in USD"
      },
      "funding_stage_or": {
        "type": "array",
        "description": "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']",
        "default": [],
        "items": {
          "type": "string"
        }
      },
      "industry_or": {
        "type": "array",
        "description": "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.",
        "default": [],
        "items": {
          "type": "string"
        }
      },
      "industry_not": {
        "type": "array",
        "description": "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.",
        "default": [],
        "items": {
          "type": "string"
        }
      },
      "industry_id_or": {
        "type": "array",
        "description": "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)",
        "default": [],
        "items": {
          "type": "integer"
        }
      },
      "industry_id_not": {
        "type": "array",
        "description": "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)",
        "default": [],
        "items": {
          "type": "integer"
        }
      },
      "company_tags_or": {
        "type": "array",
        "description": "Return companies that match any of these keywords",
        "default": [],
        "items": {
          "type": "string"
        }
      },
      "company_type": {
        "type": [
          "string",
          "null"
        ],
        "description": "Filter by company type.",
        "enum": [
          "recruiting_agency",
          "direct_employer",
          "all"
        ]
      },
      "company_investors_or": {
        "type": "array",
        "description": "Investors of the company",
        "default": [],
        "items": {
          "type": "string"
        }
      },
      "company_investors_partial_match_or": {
        "type": "array",
        "description": "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).",
        "default": [],
        "items": {
          "type": "string"
        }
      },
      "company_technology_slug_or": {
        "type": "array",
        "description": "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). Deprecated: use company_keyword_slug_or instead.",
        "default": [],
        "items": {
          "type": "string"
        }
      },
      "company_technology_slug_and": {
        "type": "array",
        "description": "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). Deprecated: use company_keyword_slug_and instead.",
        "default": [],
        "items": {
          "type": "string"
        }
      },
      "company_technology_slug_not": {
        "type": "array",
        "description": "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). Deprecated: use company_keyword_slug_not instead.",
        "default": [],
        "items": {
          "type": "string"
        }
      },
      "company_keyword_slug_or": {
        "type": "array",
        "description": "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)",
        "default": [],
        "items": {
          "type": "string"
        }
      },
      "company_keyword_slug_and": {
        "type": "array",
        "description": "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)",
        "default": [],
        "items": {
          "type": "string"
        }
      },
      "company_keyword_slug_not": {
        "type": "array",
        "description": "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)",
        "default": [],
        "items": {
          "type": "string"
        }
      },
      "only_yc_companies": {
        "type": [
          "boolean",
          "null"
        ],
        "description": "Only return YC companies",
        "default": false
      },
      "company_location_pattern_or": {
        "type": "array",
        "description": "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.",
        "default": [],
        "items": {
          "type": "string"
        }
      },
      "company_country_code_or": {
        "type": "array",
        "description": "Return companies whose HQ country code is any of the ones passed here, case sensitive. Pass ISO2 country codes.",
        "default": [],
        "items": {
          "type": "string"
        }
      },
      "company_country_code_not": {
        "type": "array",
        "description": "Return companies whose HQ country code is not any of the ones passed here, case sensitive. Pass ISO2 country codes.",
        "default": [],
        "items": {
          "type": "string"
        }
      },
      "company_list_id_or": {
        "type": "array",
        "description": "Return companies that belong to any of the company lists passed here",
        "default": [],
        "items": {
          "type": "integer"
        }
      },
      "company_list_id_not": {
        "type": "array",
        "description": "Return companies that don't belong to any of the company lists passed here",
        "default": [],
        "items": {
          "type": "integer"
        }
      },
      "company_linkedin_url_exists": {
        "type": [
          "boolean",
          "null"
        ],
        "description": "(Use `property_exists_or / property_exists_and` instead) Only return companies with a LinkedIn URL"
      },
      "revealed_company_data": {
        "type": [
          "boolean",
          "null"
        ],
        "description": "This field is deprecated and has no effect."
      },
      "last_funding_round_date_lte": {
        "type": [
          "string",
          "null"
        ],
        "description": "Only return companies whose last funding round date is before or on this date. Format: 'YYYY-MM-DD'",
        "format": "date"
      },
      "last_funding_round_date_gte": {
        "type": [
          "string",
          "null"
        ],
        "description": "Only return companies whose last funding round date is after or on this date. Format: 'YYYY-MM-DD'",
        "format": "date"
      },
      "include_total_results": {
        "type": "boolean",
        "description": "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.",
        "default": false
      }
    },
    "required": [],
    "additionalProperties": false
  }
  ```
</details>

## Output Schema

| Name          | Type     | Required | Default | Description                                    |
| ------------- | -------- | -------- | ------- | ---------------------------------------------- |
| `result.data` | `object` | Yes      |         | Provider response payload.                     |
| `result.meta` | `object` | No       |         | Additional response metadata (status, paging). |

<details>
  <summary>Show raw output schema</summary>

  ### Output JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Standard tool result payload.",
    "properties": {
      "data": {
        "type": "object",
        "description": "Provider response payload.",
        "properties": {
          "metadata": {
            "type": "object",
            "properties": {
              "total_results": {
                "type": [
                  "integer",
                  "null"
                ],
                "description": "Total number of results"
              },
              "truncated_results": {
                "type": [
                  "integer",
                  "null"
                ],
                "description": "Number of results that were not returned because the user doesn't have enough credits to fetch them all the possible results the API could have returned",
                "default": 0
              },
              "truncated_companies": {
                "type": [
                  "integer",
                  "null"
                ],
                "description": "Number of companies that were not returned because the user doesn't have enough credits to fetch all the possible results the API could have returned",
                "default": 0
              },
              "total_companies": {
                "type": [
                  "integer",
                  "null"
                ],
                "description": "Total number of companies"
              }
            },
            "additionalProperties": false
          },
          "data": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "integer",
                  "description": "ID of the job"
                },
                "job_title": {
                  "type": "string",
                  "description": "Job title"
                },
                "url": {
                  "type": "string",
                  "description": "URL of the job post"
                },
                "date_posted": {
                  "type": "string",
                  "description": "Date when the job was posted",
                  "format": "date"
                },
                "has_blurred_data": {
                  "type": "boolean",
                  "description": "Whether the returned object has company identifiable data blurred or not",
                  "default": false
                },
                "company": {
                  "type": "string",
                  "description": "Company name. This field is deprecated, please don't use it"
                },
                "final_url": {
                  "type": [
                    "string",
                    "null"
                  ],
                  "description": "Is the URL of the job in the career page of the company."
                },
                "source_url": {
                  "type": "string",
                  "description": "Is the url TheirStack used to get the job data."
                },
                "location": {
                  "type": [
                    "string",
                    "null"
                  ],
                  "description": "This is the city of the job."
                },
                "short_location": {
                  "type": [
                    "string",
                    "null"
                  ],
                  "description": "It's a combination of the city and the state of the job."
                },
                "long_location": {
                  "type": [
                    "string",
                    "null"
                  ],
                  "description": "It's a combination of the city, the state and the postal code of the job."
                },
                "state_code": {
                  "type": [
                    "string",
                    "null"
                  ],
                  "description": "The state code of the job."
                },
                "latitude": {
                  "type": [
                    "number",
                    "null"
                  ],
                  "description": "The latitude of the job."
                },
                "longitude": {
                  "type": [
                    "number",
                    "null"
                  ],
                  "description": "The longitude of the job."
                },
                "postal_code": {
                  "type": [
                    "string",
                    "null"
                  ],
                  "description": "The postal code of the job."
                },
                "remote": {
                  "type": [
                    "boolean",
                    "null"
                  ],
                  "description": "If the job is remote."
                },
                "hybrid": {
                  "type": [
                    "boolean",
                    "null"
                  ],
                  "description": "If the job is hybrid. A hybrid position is a job that combines remote and in-office work."
                },
                "salary_string": {
                  "type": [
                    "string",
                    "null"
                  ],
                  "description": "The salary of the job in the local currency. If a similar field is present in the job source, this property will contain the same content. If no similar field is present, the content will be have the following format: - per year. For the currencies where the symbol precedes the digits, the format will be - per year. In these latter two cases, both the min and max annual salary are expressed in either k (for thousands) or M (for millions)."
                },
                "min_annual_salary": {
                  "type": [
                    "integer",
                    "null"
                  ],
                  "description": "The minimum annual salary of the job in the local currency."
                },
                "min_annual_salary_usd": {
                  "type": [
                    "number",
                    "null"
                  ],
                  "description": "The minimum annual salary of the job in USD."
                },
                "max_annual_salary": {
                  "type": [
                    "integer",
                    "null"
                  ],
                  "description": "The maximum annual salary of the job in the local currency."
                },
                "max_annual_salary_usd": {
                  "type": [
                    "number",
                    "null"
                  ],
                  "description": "The maximum annual salary of the job in USD."
                },
                "avg_annual_salary_usd": {
                  "type": [
                    "number",
                    "null"
                  ],
                  "description": "This property calculates the average annual salary for a job in USD, based on the available minimum and maximum annual salary values (both already converted to USD): If both min_annual_salary_usd and max_annual_salary_usd are missing or zero, it returns None. If only the minimum is missing, it returns the maximum value. If only the maximum is missing, it returns the minimum value. If both are present, it returns the average of the two, rounded to two decimal places. This ensures the property always provides the best possible estimate of the average salary, even if only one bound is available."
                },
                "salary_currency": {
                  "type": [
                    "string",
                    "null"
                  ],
                  "description": "The currency of the salary of the job."
                },
                "countries": {
                  "type": [
                    "array",
                    "null"
                  ],
                  "description": "Countries of the job",
                  "items": {
                    "type": "string"
                  }
                },
                "country": {
                  "type": [
                    "string",
                    "null"
                  ],
                  "description": "Country name of the job"
                },
                "country_codes": {
                  "type": [
                    "array",
                    "null"
                  ],
                  "description": "Two-letter country codes (ISO 3166-1 alpha-2) representing the job's locations.",
                  "items": {
                    "type": [
                      "string",
                      "null"
                    ]
                  }
                },
                "country_code": {
                  "type": [
                    "string",
                    "null"
                  ],
                  "description": "Two-letter country code (ISO 3166-1 alpha-2) representing the job's location. If the job has multiple locations, the first one is returned."
                },
                "cities": {
                  "type": [
                    "array",
                    "null"
                  ],
                  "description": "Cities of the job",
                  "items": {
                    "type": "string"
                  }
                },
                "continents": {
                  "type": [
                    "array",
                    "null"
                  ],
                  "description": "Continents of the job",
                  "items": {
                    "type": "string"
                  }
                },
                "seniority": {
                  "type": [
                    "string",
                    "null"
                  ],
                  "description": "Seniority level of the job",
                  "enum": [
                    "c_level",
                    "staff",
                    "senior",
                    "junior",
                    "mid_level"
                  ]
                },
                "discovered_at": {
                  "type": "string",
                  "description": "Date when the job was discovered by TheirStack",
                  "format": "date-time"
                },
                "closed_at": {
                  "type": [
                    "string",
                    "null"
                  ],
                  "description": "Datetime (UTC) at which TheirStack detected the job posting was closed by the source. `null` means the job is still considered open (or we don't know yet).",
                  "format": "date-time"
                },
                "company_domain": {
                  "type": [
                    "string",
                    "null"
                  ],
                  "description": "Company website domain"
                },
                "hiring_team": {
                  "type": [
                    "array",
                    "null"
                  ],
                  "description": "Hiring team who posted the job",
                  "items": {
                    "type": "object",
                    "properties": {
                      "first_name": {
                        "type": [
                          "string",
                          "null"
                        ],
                        "description": "First name of the person"
                      },
                      "full_name": {
                        "type": [
                          "string",
                          "null"
                        ],
                        "description": "Full name of the person"
                      },
                      "linkedin_url": {
                        "type": [
                          "string",
                          "null"
                        ],
                        "description": "LinkedIn URL of the person"
                      },
                      "role": {
                        "type": [
                          "string",
                          "null"
                        ],
                        "description": "Role of the person"
                      },
                      "image_url": {
                        "type": [
                          "string",
                          "null"
                        ],
                        "description": "Image URL of the person"
                      },
                      "thumbnail_url": {
                        "type": [
                          "string",
                          "null"
                        ],
                        "description": "Thumbnail URL of the person"
                      }
                    },
                    "additionalProperties": false
                  }
                },
                "reposted": {
                  "type": [
                    "boolean",
                    "null"
                  ],
                  "description": "Indicates whether the employer has republished this job posting."
                },
                "date_reposted": {
                  "type": [
                    "string",
                    "null"
                  ],
                  "description": "Date when the job was reposted",
                  "format": "date"
                },
                "employment_statuses": {
                  "type": "array",
                  "description": "Employment statuses of the job",
                  "default": [],
                  "items": {
                    "type": "string",
                    "enum": [
                      "full_time",
                      "part_time",
                      "temporary",
                      "internship",
                      "contract",
                      "freelance",
                      "co_founder",
                      "apprenticeship",
                      "seasonal",
                      "volunteer",
                      "other"
                    ]
                  }
                },
                "easy_apply": {
                  "type": [
                    "boolean",
                    "null"
                  ],
                  "description": "Indicates whether the job application can be submitted directly through the job board (easy_apply=True) or requires redirecting to the company's website (easy_apply=False)."
                },
                "technology_slugs": {
                  "type": "array",
                  "description": "Slugs of the technologies found in the job title, description, or URL. This is a subset of keyword_slugs filtered to only technology-type keywords.",
                  "default": [],
                  "items": {
                    "type": "string"
                  }
                },
                "keyword_slugs": {
                  "type": "array",
                  "description": "Slugs of all keywords (technologies and buying intent topics) found in the job title, description, or URL.",
                  "default": [],
                  "items": {
                    "type": "string"
                  }
                },
                "description": {
                  "type": [
                    "string",
                    "null"
                  ],
                  "description": "Job description in markdown format"
                },
                "company_object": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "Company ID"
                    },
                    "name": {
                      "type": "string",
                      "description": "Company name"
                    },
                    "domain": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "Company domain"
                    },
                    "industry": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "Industry of the company"
                    },
                    "country": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "Country of the company's HQ"
                    },
                    "country_code": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "ISO2 country code. E.g. \"US\""
                    },
                    "employee_count": {
                      "type": [
                        "integer",
                        "null"
                      ],
                      "description": "Number of employees of the company"
                    },
                    "logo": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "Stable CDN-hosted company logo URL suitable for display in applications"
                    },
                    "num_jobs": {
                      "type": "integer",
                      "description": "Number of jobs from this company in our database",
                      "default": 0
                    },
                    "num_technologies": {
                      "type": "integer",
                      "description": "Number of technologies mentioned in the jobs of this company",
                      "default": 0
                    },
                    "num_keywords": {
                      "type": "integer",
                      "description": "Number of distinct keywords (technologies + buying intent topics) found in this company's jobs",
                      "default": 0
                    },
                    "num_buying_intent_topics": {
                      "type": "integer",
                      "description": "Number of distinct buying intent topic keywords found in this company's jobs",
                      "default": 0
                    },
                    "possible_domains": {
                      "type": "array",
                      "description": "List of possible domains for the company",
                      "default": [],
                      "items": {
                        "type": "string"
                      }
                    },
                    "url": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "Company domain. Same as the \"domain\" field. Will be deprecated in the future."
                    },
                    "industry_id": {
                      "type": [
                        "integer",
                        "null"
                      ],
                      "description": "Code of the industry. One of LinkedIn's Industry Codes V2 from https://learn.microsoft.com/en-us/linkedin/shared/references/reference-tables/industry-codes-v2"
                    },
                    "linkedin_url": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "num_jobs_last_30_days": {
                      "type": "integer",
                      "description": "Number of jobs from this company in our database posted in the last 30 days",
                      "default": 0
                    },
                    "num_jobs_found": {
                      "type": [
                        "integer",
                        "null"
                      ],
                      "description": "When filtering companies by jobs, number of jobs found for this company"
                    },
                    "yc_batch": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "If the company went through YC, this is its batch"
                    },
                    "apollo_id": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "ID of the company in Apollo"
                    },
                    "linkedin_id": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "ID of the company in LinkedIn"
                    },
                    "url_source": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "Source of the company URL"
                    },
                    "is_recruiting_agency": {
                      "type": [
                        "boolean",
                        "null"
                      ],
                      "description": "Is a recruiting agency"
                    },
                    "founded_year": {
                      "type": [
                        "integer",
                        "null"
                      ],
                      "description": "Year the company was founded"
                    },
                    "annual_revenue_usd": {
                      "type": [
                        "number",
                        "null"
                      ],
                      "description": "Annual revenue of the company in USD"
                    },
                    "annual_revenue_usd_readable": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "Annual revenue of the company in USD, formated as an easily readable string"
                    },
                    "total_funding_usd": {
                      "type": [
                        "integer",
                        "null"
                      ],
                      "description": "Funding of the company in USD"
                    },
                    "last_funding_round_date": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "Date of the last funding round of the company",
                      "format": "date"
                    },
                    "last_funding_round_amount_readable": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "Amount of the last funding round of the company, formated as an easily readable string"
                    },
                    "employee_count_range": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "Number range of employees at the company"
                    },
                    "long_description": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "Short description of the company"
                    },
                    "seo_description": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "SEO description of the company, extracted from their website"
                    },
                    "city": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "City of the company's HQ"
                    },
                    "postal_code": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "Postal code of the company's HQ"
                    },
                    "company_keywords": {
                      "type": [
                        "array",
                        "null"
                      ],
                      "description": "Company keywords, related to what the company does. Deprecated: use company_tags instead.",
                      "items": {
                        "type": "string"
                      }
                    },
                    "company_tags": {
                      "type": "array",
                      "description": "Company keywords, related to what the company does",
                      "default": [],
                      "items": {
                        "type": "string"
                      }
                    },
                    "alexa_ranking": {
                      "type": [
                        "integer",
                        "null"
                      ],
                      "description": "Alexa ranking"
                    },
                    "publicly_traded_symbol": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "publicly_traded_exchange": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "investors": {
                      "type": [
                        "array",
                        "null"
                      ],
                      "description": "List of investors in this company",
                      "items": {
                        "type": "string"
                      }
                    },
                    "funding_stage": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "Latest funding stage of the company",
                      "enum": [
                        "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"
                      ]
                    },
                    "has_blurred_data": {
                      "type": "boolean",
                      "description": "Whether the returned object has company identifiable data blurred or not",
                      "default": false
                    },
                    "keyword_slugs": {
                      "type": "array",
                      "description": "Slugs of all keywords (technologies and buying intent topics) found in this company's jobs",
                      "default": [],
                      "items": {
                        "type": "string"
                      }
                    },
                    "technology_slugs": {
                      "type": [
                        "array",
                        "null"
                      ],
                      "description": "Slugs of the technologies found in this company's jobs. This is a subset of keyword_slugs filtered to only technology-type keywords.",
                      "items": {
                        "type": "string"
                      }
                    },
                    "technology_names": {
                      "type": [
                        "array",
                        "null"
                      ],
                      "description": "Names of the technologies found to be used by the company",
                      "items": {
                        "type": "string"
                      }
                    }
                  },
                  "required": [
                    "id",
                    "name"
                  ],
                  "additionalProperties": false
                },
                "locations": {
                  "type": "array",
                  "description": "All possible locations of the job with coordinates, city, state, state_code, country_code, etc.",
                  "default": [],
                  "items": {
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": [
                          "integer",
                          "null"
                        ],
                        "description": "The unique identifier for the location, is based on the geonameid field from the geonames database"
                      },
                      "name": {
                        "type": [
                          "string",
                          "null"
                        ],
                        "description": "The name of the location. If it's a city, it will be the city name; if it's a country, it will be the country name; if it's a region, it will be the region name, etc"
                      },
                      "type": {
                        "type": [
                          "string",
                          "null"
                        ],
                        "description": "The type of the location",
                        "enum": [
                          "city",
                          "region",
                          "country",
                          "continent"
                        ]
                      },
                      "feature_code": {
                        "type": [
                          "string",
                          "null"
                        ],
                        "description": "GeoNames feature code (e.g., 'PPL' for populated place, 'ADM1' for first-order administrative division, 'PCLI' for country). Check all the possible feature codes in the GeoNames documentation"
                      },
                      "country_code": {
                        "type": [
                          "string",
                          "null"
                        ],
                        "description": "ISO 3166-1 alpha-2 country code of the location"
                      },
                      "admin1_name": {
                        "type": [
                          "string",
                          "null"
                        ],
                        "description": "The first level administrative division name of the location"
                      },
                      "admin1_code": {
                        "type": [
                          "string",
                          "null"
                        ],
                        "description": "The first level administrative division code of the location"
                      },
                      "admin2_name": {
                        "type": [
                          "string",
                          "null"
                        ],
                        "description": "The second level administrative division name of the location (e.g., county or district)"
                      },
                      "admin2_code": {
                        "type": [
                          "string",
                          "null"
                        ],
                        "description": "The second level administrative division code of the location"
                      },
                      "continent": {
                        "type": [
                          "string",
                          "null"
                        ],
                        "description": "Continent code of the location"
                      },
                      "latitude": {
                        "type": [
                          "number",
                          "null"
                        ],
                        "description": "Geographic latitude coordinate for precise mapping"
                      },
                      "longitude": {
                        "type": [
                          "number",
                          "null"
                        ],
                        "description": "Geographic longitude coordinate for precise mapping"
                      },
                      "city": {
                        "type": [
                          "string",
                          "null"
                        ],
                        "description": "The city of the location (Deprecated): Use 'name' field when 'type' is 'city'"
                      },
                      "address": {
                        "type": "null",
                        "description": "Address of the location (Deprecated): This field has been removed. Use the location fields (name, admin1_name, country_code, etc.) to construct addresses as needed"
                      },
                      "postal_code": {
                        "type": "null",
                        "description": "Postal code of the location (Deprecated): This field has been removed and is no longer available"
                      },
                      "state": {
                        "type": [
                          "string",
                          "null"
                        ],
                        "description": "State of the location (Deprecated): Use 'admin1_name' instead"
                      },
                      "state_code": {
                        "type": [
                          "string",
                          "null"
                        ],
                        "description": "State code of the location (Deprecated): Use 'admin1_code' instead"
                      },
                      "display_name": {
                        "type": "string",
                        "description": "A human-readable display name for the location, constructed from available location fields"
                      },
                      "country_name": {
                        "type": [
                          "string",
                          "null"
                        ],
                        "description": "The full country name derived from the country_code"
                      }
                    },
                    "required": [
                      "display_name",
                      "country_name"
                    ],
                    "additionalProperties": false
                  }
                },
                "normalized_title": {
                  "type": [
                    "string",
                    "null"
                  ]
                },
                "manager_roles": {
                  "type": [
                    "array",
                    "null"
                  ],
                  "description": "Roles of the person or people found in the job description to be the managers of the hired person. Can be useful to infer who's the decision maker for the technologies mentioned in the job post.",
                  "items": {
                    "type": "string"
                  }
                },
                "matching_phrases": {
                  "type": [
                    "array",
                    "null"
                  ],
                  "description": "Phrases from the job description that match the pattern passed",
                  "default": [],
                  "items": {
                    "type": [
                      "string",
                      "null"
                    ]
                  }
                },
                "matching_words": {
                  "type": [
                    "array",
                    "null"
                  ],
                  "description": "Words from the job description that match the pattern passed",
                  "default": [],
                  "items": {
                    "type": [
                      "string",
                      "null"
                    ]
                  }
                }
              },
              "required": [
                "id",
                "job_title",
                "url",
                "date_posted",
                "company",
                "source_url",
                "discovered_at",
                "company_object"
              ],
              "additionalProperties": false
            }
          }
        },
        "required": [
          "metadata",
          "data"
        ],
        "additionalProperties": false
      },
      "meta": {
        "type": "object",
        "description": "Additional response metadata (status, paging).",
        "additionalProperties": true
      }
    },
    "required": [
      "data"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Advanced: Direct CLI

<Info>
  Use direct execution for single payload debugging.
</Info>

```bash theme={null}
deepline tools execute theirstack_job_search --payload '{}' --json
```

### CLI flags

| Flag                        | Description                                         |
| --------------------------- | --------------------------------------------------- |
| `--json`                    | Print machine-readable output.                      |
| `--wait`                    | Wait for terminal provider status when supported.   |
| `--debug`                   | Enable wait mode with additional status/log output. |
| `--wait-timeout SECONDS`    | Max seconds to wait in wait mode.                   |
| `--poll-interval SECONDS`   | Polling interval in seconds during wait mode.       |
| `--timeout SECONDS`         | Request timeout in seconds.                         |
| `--connect-timeout SECONDS` | Connection timeout in seconds.                      |

## Cost

* Pricing model: `per_result` (per result).
* Estimated Deepline credits: `0.56` per pricing unit.
* Billing mode: `post_deduct`.
