curl --request POST \
--url https://api.getanyapi.com/v1/run/job_search.theirstack \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"companyDomainOr": [
"stripe.com"
],
"limit": 1,
"postedAtMaxAgeDays": 30
}
'import requests
url = "https://api.getanyapi.com/v1/run/job_search.theirstack"
payload = {
"companyDomainOr": ["stripe.com"],
"limit": 1,
"postedAtMaxAgeDays": 30
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({companyDomainOr: ['stripe.com'], limit: 1, postedAtMaxAgeDays: 30})
};
fetch('https://api.getanyapi.com/v1/run/job_search.theirstack', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.getanyapi.com/v1/run/job_search.theirstack",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'companyDomainOr' => [
'stripe.com'
],
'limit' => 1,
'postedAtMaxAgeDays' => 30
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.getanyapi.com/v1/run/job_search.theirstack"
payload := strings.NewReader("{\n \"companyDomainOr\": [\n \"stripe.com\"\n ],\n \"limit\": 1,\n \"postedAtMaxAgeDays\": 30\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.getanyapi.com/v1/run/job_search.theirstack")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"companyDomainOr\": [\n \"stripe.com\"\n ],\n \"limit\": 1,\n \"postedAtMaxAgeDays\": 30\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.getanyapi.com/v1/run/job_search.theirstack")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"companyDomainOr\": [\n \"stripe.com\"\n ],\n \"limit\": 1,\n \"postedAtMaxAgeDays\": 30\n}"
response = http.request(request)
puts response.read_body{
"costUsd": 123,
"items": 123,
"output": {
"data": {
"jobs": [
{
"jobId": "<string>",
"title": "<string>",
"avgAnnualSalaryUsd": 123,
"cities": [
"<string>"
],
"closedUtc": 123,
"company": {
"alexaRanking": 123,
"annualRevenueReadable": "<string>",
"annualRevenueUsd": 123,
"apolloId": "<string>",
"city": "<string>",
"companyId": "<string>",
"companyKeywords": [
"<string>"
],
"companyTags": [
"<string>"
],
"country": "<string>",
"countryCode": "<string>",
"domain": "<string>",
"employeeCount": 123,
"employeeCountRange": "<string>",
"foundedYear": 123,
"fundingStage": "<string>",
"hasBlurredData": true,
"image": "<string>",
"industry": "<string>",
"industryId": "<string>",
"investors": [
"<string>"
],
"isRecruitingAgency": true,
"keywordSlugs": [
"<string>"
],
"lastFundingRoundReadable": "<string>",
"lastFundingRoundUtc": 123,
"linkedinId": "<string>",
"linkedinUrl": "<string>",
"longDescription": "<string>",
"name": "<string>",
"numBuyingIntentTopics": 123,
"numJobs": 123,
"numJobsLast30Days": 123,
"numKeywords": 123,
"numTechnologies": 123,
"possibleDomains": [
"<string>"
],
"postalCode": "<string>",
"publiclyTradedExchange": "<string>",
"publiclyTradedSymbol": "<string>",
"seoDescription": "<string>",
"technologyNames": [
"<string>"
],
"technologySlugs": [
"<string>"
],
"totalFundingUsd": 123,
"url": "<string>",
"ycBatch": "<string>"
},
"companyDomain": "<string>",
"companyName": "<string>",
"continents": [
"<string>"
],
"countries": [
"<string>"
],
"country": "<string>",
"countryCode": "<string>",
"countryCodes": [
"<string>"
],
"description": "<string>",
"discoveredUtc": 123,
"easyApply": true,
"employmentStatuses": [
"<string>"
],
"finalUrl": "<string>",
"hasBlurredData": true,
"hybrid": true,
"keywordSlugs": [
"<string>"
],
"latitude": 123,
"location": "<string>",
"locations": [
{
"name": "<string>",
"address": "<string>",
"admin1Code": "<string>",
"admin1Name": "<string>",
"admin2Code": "<string>",
"admin2Name": "<string>",
"city": "<string>",
"continent": "<string>",
"country": "<string>",
"countryCode": "<string>",
"displayName": "<string>",
"featureCode": "<string>",
"latitude": 123,
"locationId": "<string>",
"longitude": 123,
"postalCode": "<string>",
"state": "<string>",
"stateCode": "<string>",
"type": "<string>"
}
],
"longLocation": "<string>",
"longitude": 123,
"managerRoles": [
"<string>"
],
"matchingPhrases": [
"<string>"
],
"matchingWords": [
"<string>"
],
"maxAnnualSalary": 123,
"maxAnnualSalaryUsd": 123,
"minAnnualSalary": 123,
"minAnnualSalaryUsd": 123,
"normalizedTitle": "<string>",
"postalCode": "<string>",
"postedUtc": 123,
"remote": true,
"reposted": true,
"repostedUtc": 123,
"salaryCurrency": "<string>",
"salaryString": "<string>",
"seniority": "<string>",
"shortLocation": "<string>",
"sourceUrl": "<string>",
"stateCode": "<string>",
"technologySlugs": [
"<string>"
],
"url": "<string>"
}
],
"totalCompanies": 123,
"totalResults": 123,
"truncatedCompanies": 123,
"truncatedResults": 123
},
"found": true
},
"provider": "<string>",
"replayed": true,
"hint": "<string>",
"jqError": "<string>",
"resultId": "<string>"
}{
"error": "<string>",
"code": "<string>",
"payment": {
"costUsd": 1,
"rail": "<string>",
"settlementState": "charged_undelivered"
},
"requestId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}{
"error": "<string>",
"code": "<string>",
"payment": {
"costUsd": 1,
"rail": "<string>",
"settlementState": "charged_undelivered"
},
"requestId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}{
"error": "<string>",
"code": "<string>",
"payment": {
"costUsd": 1,
"rail": "<string>",
"settlementState": "charged_undelivered"
},
"requestId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}{
"error": "<string>",
"code": "<string>",
"payment": {
"costUsd": 1,
"rail": "<string>",
"settlementState": "charged_undelivered"
},
"requestId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}{
"error": "<string>",
"code": "<string>",
"payment": {
"costUsd": 1,
"rail": "<string>",
"settlementState": "charged_undelivered"
},
"requestId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}{
"error": "<string>",
"code": "<string>",
"payment": {
"costUsd": 1,
"rail": "<string>",
"settlementState": "charged_undelivered"
},
"requestId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}{
"error": "<string>",
"code": "<string>",
"payment": {
"costUsd": 1,
"rail": "<string>",
"settlementState": "charged_undelivered"
},
"requestId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}{
"error": "<string>",
"code": "<string>",
"payment": {
"costUsd": 1,
"rail": "<string>",
"settlementState": "charged_undelivered"
},
"requestId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}{
"error": "<string>",
"code": "<string>",
"payment": {
"costUsd": 1,
"rail": "<string>",
"settlementState": "charged_undelivered"
},
"requestId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}Job Search - TheirStack
Search TheirStack’s job-post index by company, technology, keyword, title, seniority, salary, location and how recently the post appeared, and get the hiring company’s full firmographic record with every post. Billed per job returned.
Price: billed per result - $67.20 per 1,000 results, capped at $9,945.60 per 1,000 requests.
Routing: one lane serves this API today, so a failed attempt has nowhere to fail over to. Payment outcome follows the selected rail’s settlement policy.
Catalog: Job Search - TheirStack pricing and uptime - live USD price, lane routing, and measured 30-day uptime. Every Job_search endpoint.
curl --request POST \
--url https://api.getanyapi.com/v1/run/job_search.theirstack \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"companyDomainOr": [
"stripe.com"
],
"limit": 1,
"postedAtMaxAgeDays": 30
}
'import requests
url = "https://api.getanyapi.com/v1/run/job_search.theirstack"
payload = {
"companyDomainOr": ["stripe.com"],
"limit": 1,
"postedAtMaxAgeDays": 30
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({companyDomainOr: ['stripe.com'], limit: 1, postedAtMaxAgeDays: 30})
};
fetch('https://api.getanyapi.com/v1/run/job_search.theirstack', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.getanyapi.com/v1/run/job_search.theirstack",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'companyDomainOr' => [
'stripe.com'
],
'limit' => 1,
'postedAtMaxAgeDays' => 30
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.getanyapi.com/v1/run/job_search.theirstack"
payload := strings.NewReader("{\n \"companyDomainOr\": [\n \"stripe.com\"\n ],\n \"limit\": 1,\n \"postedAtMaxAgeDays\": 30\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.getanyapi.com/v1/run/job_search.theirstack")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"companyDomainOr\": [\n \"stripe.com\"\n ],\n \"limit\": 1,\n \"postedAtMaxAgeDays\": 30\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.getanyapi.com/v1/run/job_search.theirstack")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"companyDomainOr\": [\n \"stripe.com\"\n ],\n \"limit\": 1,\n \"postedAtMaxAgeDays\": 30\n}"
response = http.request(request)
puts response.read_body{
"costUsd": 123,
"items": 123,
"output": {
"data": {
"jobs": [
{
"jobId": "<string>",
"title": "<string>",
"avgAnnualSalaryUsd": 123,
"cities": [
"<string>"
],
"closedUtc": 123,
"company": {
"alexaRanking": 123,
"annualRevenueReadable": "<string>",
"annualRevenueUsd": 123,
"apolloId": "<string>",
"city": "<string>",
"companyId": "<string>",
"companyKeywords": [
"<string>"
],
"companyTags": [
"<string>"
],
"country": "<string>",
"countryCode": "<string>",
"domain": "<string>",
"employeeCount": 123,
"employeeCountRange": "<string>",
"foundedYear": 123,
"fundingStage": "<string>",
"hasBlurredData": true,
"image": "<string>",
"industry": "<string>",
"industryId": "<string>",
"investors": [
"<string>"
],
"isRecruitingAgency": true,
"keywordSlugs": [
"<string>"
],
"lastFundingRoundReadable": "<string>",
"lastFundingRoundUtc": 123,
"linkedinId": "<string>",
"linkedinUrl": "<string>",
"longDescription": "<string>",
"name": "<string>",
"numBuyingIntentTopics": 123,
"numJobs": 123,
"numJobsLast30Days": 123,
"numKeywords": 123,
"numTechnologies": 123,
"possibleDomains": [
"<string>"
],
"postalCode": "<string>",
"publiclyTradedExchange": "<string>",
"publiclyTradedSymbol": "<string>",
"seoDescription": "<string>",
"technologyNames": [
"<string>"
],
"technologySlugs": [
"<string>"
],
"totalFundingUsd": 123,
"url": "<string>",
"ycBatch": "<string>"
},
"companyDomain": "<string>",
"companyName": "<string>",
"continents": [
"<string>"
],
"countries": [
"<string>"
],
"country": "<string>",
"countryCode": "<string>",
"countryCodes": [
"<string>"
],
"description": "<string>",
"discoveredUtc": 123,
"easyApply": true,
"employmentStatuses": [
"<string>"
],
"finalUrl": "<string>",
"hasBlurredData": true,
"hybrid": true,
"keywordSlugs": [
"<string>"
],
"latitude": 123,
"location": "<string>",
"locations": [
{
"name": "<string>",
"address": "<string>",
"admin1Code": "<string>",
"admin1Name": "<string>",
"admin2Code": "<string>",
"admin2Name": "<string>",
"city": "<string>",
"continent": "<string>",
"country": "<string>",
"countryCode": "<string>",
"displayName": "<string>",
"featureCode": "<string>",
"latitude": 123,
"locationId": "<string>",
"longitude": 123,
"postalCode": "<string>",
"state": "<string>",
"stateCode": "<string>",
"type": "<string>"
}
],
"longLocation": "<string>",
"longitude": 123,
"managerRoles": [
"<string>"
],
"matchingPhrases": [
"<string>"
],
"matchingWords": [
"<string>"
],
"maxAnnualSalary": 123,
"maxAnnualSalaryUsd": 123,
"minAnnualSalary": 123,
"minAnnualSalaryUsd": 123,
"normalizedTitle": "<string>",
"postalCode": "<string>",
"postedUtc": 123,
"remote": true,
"reposted": true,
"repostedUtc": 123,
"salaryCurrency": "<string>",
"salaryString": "<string>",
"seniority": "<string>",
"shortLocation": "<string>",
"sourceUrl": "<string>",
"stateCode": "<string>",
"technologySlugs": [
"<string>"
],
"url": "<string>"
}
],
"totalCompanies": 123,
"totalResults": 123,
"truncatedCompanies": 123,
"truncatedResults": 123
},
"found": true
},
"provider": "<string>",
"replayed": true,
"hint": "<string>",
"jqError": "<string>",
"resultId": "<string>"
}{
"error": "<string>",
"code": "<string>",
"payment": {
"costUsd": 1,
"rail": "<string>",
"settlementState": "charged_undelivered"
},
"requestId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}{
"error": "<string>",
"code": "<string>",
"payment": {
"costUsd": 1,
"rail": "<string>",
"settlementState": "charged_undelivered"
},
"requestId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}{
"error": "<string>",
"code": "<string>",
"payment": {
"costUsd": 1,
"rail": "<string>",
"settlementState": "charged_undelivered"
},
"requestId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}{
"error": "<string>",
"code": "<string>",
"payment": {
"costUsd": 1,
"rail": "<string>",
"settlementState": "charged_undelivered"
},
"requestId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}{
"error": "<string>",
"code": "<string>",
"payment": {
"costUsd": 1,
"rail": "<string>",
"settlementState": "charged_undelivered"
},
"requestId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}{
"error": "<string>",
"code": "<string>",
"payment": {
"costUsd": 1,
"rail": "<string>",
"settlementState": "charged_undelivered"
},
"requestId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}{
"error": "<string>",
"code": "<string>",
"payment": {
"costUsd": 1,
"rail": "<string>",
"settlementState": "charged_undelivered"
},
"requestId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}{
"error": "<string>",
"code": "<string>",
"payment": {
"costUsd": 1,
"rail": "<string>",
"settlementState": "charged_undelivered"
},
"requestId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}{
"error": "<string>",
"code": "<string>",
"payment": {
"costUsd": 1,
"rail": "<string>",
"settlementState": "charged_undelivered"
},
"requestId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}Authorizations
Your AnyAPI key as a Bearer token.
Headers
Optional wallet idempotency key, scoped to this customer for 24 hours. When the gateway honors the key, this synchronous in-process execution can continue after the caller disconnects, bounded by its execution deadline. A completed replayable result charges normally exactly once and can be replayed without another provider run or charge. A pending duplicate returns 409 idempotency_in_progress; reuse with different request semantics returns 409 idempotency_conflict.
1 - 255Query Parameters
Optional. Comma-separated keys (dotted paths like author.name descend into nested objects) to keep on each result item. Keys are matched relative to each result item after the data/items envelope is unwrapped, not against the top-level response envelope, so use jq to reshape the whole envelope. Shrinks the response without changing cost.
Optional. Cap the number of result rows returned; a _truncated note reports how many were withheld so you can page via the API's own limit. Does not change cost.
x >= 0Optional. Return only a structural outline (top-level keys, item counts, and per-field byte sizes) instead of the full data. Does not change cost.
Optional. A jq expression applied to the result envelope; its output replaces output (multiple outputs collect into an array). Reshape freely, e.g. jq=.data | {title, description, md: .markdown[:3500]}. Runs sandboxed with a 250ms / 2MB budget; on failure the full result is returned with a jqError. Does not change cost.
Body
Return companies whose HQ country code is not any of the ones passed here, case sensitive. Pass ISO2 country codes.
Return companies whose HQ country code is any of the ones passed here, case sensitive. Pass ISO2 country codes.
Set to True to make company description searches accent insensitive. For example, "á" will match "a" as well.
Case-insensitive patterns to match in the company description. Will return companies that match any of the patterns.
Case-insensitive patterns to match in the company description. Will return companies that match any of the patterns.
Only return companies that don't match these domains exactly. It accepts full urls (https://www.google.com/) and emails (john.polo@gmail.com).
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.
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.
Investors of the company
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).
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
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
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
(Use property_exists_or / property_exists_and instead) Only return companies with a LinkedIn URL
Return companies whose LinkedIn URL matches any of the slugs passed here. Can also pass full LinkedIn company URLs.
Return companies that don't belong to any of the company lists passed here
Return companies that belong to any of the company lists passed here
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.
Only return companies that match these names exactly, case-insensitively.
Only return companies that don't match these names exactly, case-sensitively.
Only return companies that match these names exactly, case-sensitively. This filter acts as an OR filter, so if you pass more than one company name, it will return companies that match any of the names.
Company names. Will return companies whose name doesn't contain any of the the substrings passed here, case-insensitively. For example, if you pass 'google', it will exclude 'Google', 'Google LLC', 'Google Inc', etc.
Company 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.
Return companies that match any of these keywords
Will return jobs from companies that that have mentioned all of these technologies in their jobs (not necessarily in the jobs returned). Case sensitive. Pass slugs. Check out all the technologies we track at GET /v0/catalog/technologies. Deprecated: use company_keyword_slug_and instead.
Will return jobs from companies that that haven't mentioned any of these technologies in their jobs. Case sensitive. Pass slugs. Check out all the technologies we track at GET /v0/catalog/technologies. Deprecated: use company_keyword_slug_not instead.
Will return jobs from companies that that have mentioned any of these technologies in their jobs (not necessarily in the jobs returned). Case sensitive. Pass slugs. Check out all the technologies we track at GET /v0/catalog/technologies. Deprecated: use company_keyword_slug_or instead.
Filter by company type.
Only jobs discovered by TheirStack on this date or datetime or after will be returned. In UTC timezone.
Only jobs discovered by TheirStack on this date or datetime or before will be returned. In UTC timezone.
If 0, only return jobs added to our database in the current day. If 1, from today and yesterday, etc.
If 1, only return jobs discovered by TheirStack until yesterday. If 2, until 2 days ago, etc.
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.
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.
(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.
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']
(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.
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.
Industry ids to exclude.You can use any of LinkedIn's Industry Codes V2 or GET /v0/catalog/industries
Industry codes. You can use any of LinkedIn's Industry Codes V2 or GET /v0/catalog/industries
Names of industries, case-insensitive. Results will exclude companies that belong to any of the industries specified in this parameter. Available values: GET /v0/catalog/industries WARNING: Deprecated parameter. Use the industry_id_not field instead.
Names of industries, case-insensitive. Results will only include companies that belong to any of the industries specified in this parameter. Available values: GET /v0/catalog/industries WARNING: Deprecated parameter. Use the industry_id_or field instead.
2-letter ISO country code of the location of the job. Can pass more than 1. Will exclude jobs from these countries
2-letter ISO country code of the location of the job. Can pass more than 1
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.
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.
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.
Deprecated. Use job_description_pattern_or instead, which now behaves identically.
Deprecated. Has no effect.
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.
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.
Exclude jobs with these IDs.
Get jobs with these IDs only.
Get jobs with these IDs only. Deprecated parameter, use job_id_or instead.
Will return jobs where all of these keyword slugs appear. Case sensitive. Check out all the keywords we track at GET /v0/catalog/keywords
Will return jobs where none of these keyword slugs appear. Case sensitive. Check out all the keywords we track at GET /v0/catalog/keywords
Will return jobs where any of these keyword slugs appear. Case sensitive. Check out all the keywords we track at GET /v0/catalog/keywords
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)
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)
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.
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.
Will return jobs where the seniority is any of the ones passed here
Will return jobs where all of these technologies appear. Case sensitive. Pass slugs. Check out all the technologies we track with the technologies endpoint.
Will return jobs where none of these technologies appear. Case sensitive. Pass slugs. Check out all the technologies we track with the technologies endpoint.
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.
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.
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.
Regex patterns to match job titles. Case-insensitive. Only jobs with title that match all of these patterns will be returned.
Regex patterns to match job titles. Case-insensitive. Jobs whose job title doesn't match any of the patterns will be returned.
Regex patterns to match job titles. Case-insensitive. Jobs whose job title matches of the filters will be returned.
Only return companies whose last funding round date is after or on this date. Format: 'YYYY-MM-DD'
Only return companies whose last funding round date is before or on this date. Format: 'YYYY-MM-DD'
Rows to return on this page, up to TheirStack's maximum of 500. Every row returned is billed.
1 <= x <= 148Maximum number of employees in a company
Maximum number of employees in a company. If we don't have company size information, we will return it as well.
Maximum company funding, in USD
Maximum company revenue, in USD
Maximum annual salary in USD. For example, 150000 means $150,000.
Minimum number of employees in a company
Minimum number of employees in a company. If we don't have company size information, we will return it as well.
Minimum company funding, in USD
Minimum company revenue, in USD
Minimum annual salary in USD. For example, 100000 means $100,000.
Number of results to skip. Required for offset-based pagination.
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.
Only return jobs where we identified the role the hired person would report to. Deprecated field, use reports_to_exists instead.
Only return YC companies
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.
Page number. Required when using page-based pagination.
ISO 8601 date string (yyyy-mm-dd). Only jobs published in this date or after will be returned.
ISO 8601 date string (yyyy-mm-dd). Only jobs published in this date or before will be returned.
Date posted max age in days. If 0, only return jobs posted today. If 1, from today and yesterday, etc.
Optional; omit it and routing is unchanged, with the cheapest source serving. Prefer sources whose typical response time (median over the trailing 30 days, as published on this endpoint's lane health) is under this many milliseconds; among those, the cheapest serves. This can raise your price: when the cheapest source misses the target, a faster and dearer one serves, and you are quoted and charged its price. If no source is that fast the request is still served, by whichever source offers the best speed for its price - it is never refused for being slow. Sources we have not timed are tried last. This is a preference, not a guarantee: the median describes past requests and is not a ceiling on this one, and it excludes any wait this request itself asks for. On a paginated walk it applies to the first page only: later pages stay with the source that page chose, at the price it was quoted.
x >= 1Return 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.
True: only show remote jobs. False: only show non-remote jobs. None: show all jobs.
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.
Regex patterns to match job sources. Case-insensitive.
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.
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.
Response
Normalized result.
USD charged on the original run. On a replay this value is echoed for parity; the replay itself is free.
Number of result rows returned. For per-result SKUs the per-item cost is charged against this count; for input-priced SKUs the charge is per submitted input, independent of this count.
Normalized output, or null when the replay payload was not retained.
Hide child attributes
Hide child attributes
The matching rows plus TheirStack's result counters.
Hide child attributes
Hide child attributes
Matching job posts, each carrying the hiring company's firmographic record.
Hide child attributes
Hide child attributes
TheirStack's own identifier for the post.
Job title as posted.
Midpoint of the posted annual salary, converted to USD.
Every city the post covers.
UTC epoch timestamp in seconds (Unix time) the post closed. Multiply by 1000 for a JS Date in milliseconds.
The hiring company's full TheirStack firmographic record.
Hide child attributes
Hide child attributes
Alexa traffic rank for the company website.
Estimated annual revenue as a display string, e.g. 4.2M.
Estimated annual revenue in USD.
Apollo's identifier for the same company.
Headquarters city.
TheirStack's own company identifier.
Keywords TheirStack assigns the company.
Tags TheirStack assigns the company.
Headquarters country.
ISO 3166-1 alpha-2 country code.
Primary company domain.
Employees TheirStack currently counts.
Employee headcount band, e.g. 201-500.
Year the company was founded.
Most recent funding stage, e.g. series_b.
True when TheirStack redacted part of the record on this plan.
Company logo URL.
Company industry.
TheirStack's identifier for that industry.
Investors TheirStack records for the company.
True when TheirStack classifies the company as a recruiting agency rather than a direct employer.
Keyword slugs found in the company's job posts. These are the values the keyword filters take.
Most recent round size as a display string, e.g. $15M.
UTC epoch timestamp in seconds (Unix time) of the most recent funding round. Multiply by 1000 for a JS Date in milliseconds.
Company LinkedIn numeric id.
Company LinkedIn page URL.
Company description as the company writes it.
Company name.
Distinct buying-intent topics detected in the company's job posts.
Job posts TheirStack holds for the company, all time.
Job posts published in the last 30 days.
Distinct keywords detected in the company's job posts.
Distinct technologies detected in the company's job posts.
Every domain TheirStack associates with the company.
Headquarters postal code.
Exchange the company lists on.
Stock ticker, for listed companies.
Meta description from the company's website.
Human-readable names for those technologies.
Technology slugs found in the company's job posts. These are the values the technology filters take.
Total capital raised, in USD.
Company website URL.
Y Combinator batch, e.g. W20, for companies that went through it.
Hiring company domain.
Hiring company name.
Every continent the post covers.
Every country the post covers.
Country name.
ISO 3166-1 alpha-2 country code.
Every country code the post covers.
Full job description text.
UTC epoch timestamp in seconds (Unix time) TheirStack first saw the post. Multiply by 1000 for a JS Date in milliseconds.
True when the post supports one-click apply.
Employment types, e.g. full_time.
URL the post redirects to, when it does.
True when TheirStack redacted part of the record on this plan.
True for a hybrid role.
Keyword slugs found in the post.
Latitude of the posted location.
Location as posted.
Every resolved location the post covers, with TheirStack's geographic breakdown.
Hide child attributes
Hide child attributes
Location name.
Street address, when the post gives one.
First-level administrative division code.
First-level administrative division name.
Second-level administrative division code.
Second-level administrative division name.
City.
Continent code, e.g. NA.
Country name.
ISO 3166-1 alpha-2 country code.
Location as one display string.
GeoNames feature code for the place.
Latitude.
TheirStack's identifier for the place.
Longitude.
Postal code.
State or region.
State or region code.
Granularity of the place, e.g. city, state, country.
Long form of the location.
Longitude of the posted location.
Manager roles TheirStack extracted from the post.
Phrases from your pattern filters that matched this post.
Words from your pattern filters that matched this post.
Upper bound of the posted annual salary, in the posted currency.
Upper bound of the posted annual salary, converted to USD.
Lower bound of the posted annual salary, in the posted currency.
Lower bound of the posted annual salary, converted to USD.
TheirStack's normalized form of the title.
Postal code.
UTC epoch timestamp in seconds (Unix time) the job was posted. Multiply by 1000 for a JS Date in milliseconds.
True for a fully remote role.
True when the post is a repost of an earlier one.
UTC epoch timestamp in seconds (Unix time) the post was last reposted. Multiply by 1000 for a JS Date in milliseconds.
Currency the posted salary is in.
Salary exactly as the post states it.
Seniority band TheirStack assigns, e.g. mid_level.
Short form of the location.
URL TheirStack found the post at.
State or region code.
Technology slugs found in the post.
URL of the job post.
Distinct companies matching the filters. TheirStack computes it only when you send includeTotalResults.
Rows matching the filters across all pages. TheirStack computes it only when you send includeTotalResults, and omits it otherwise.
Companies TheirStack withheld because the plan's result ceiling was reached.
Rows TheirStack withheld because the plan's result ceiling was reached.
False when nothing matched the filters.
Always "AnyAPI".
True when this response replays the durable result of an earlier run without billing or upstream execution.
Optional one-line nudge, absent when there is nothing to say. large_result: suggests the fields/max_items/summary/jq controls for a big response. paging_unavailable: means this result came from a source that cannot return a nextCursor, so it may be INCOMPLETE and cannot be continued - re-run with requireCursor: true to be served only by a source that can page, which may cost more per request.
Present only when a jq expression failed; output then carries the full unshaped result and this explains why the reshape did not apply.
Opaque handle to the full unshaped result, cached ~15 min. Re-shape it for free (fields/max_items/summary/jq) via GET /v1/results/{id}, no re-billing. Absent when the result was too large to cache.