curl --request POST \
--url https://api.getanyapi.com/v1/run/company_search.theirstack \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"companyDomainOr": [
"posthog.com"
],
"limit": 1
}
'import requests
url = "https://api.getanyapi.com/v1/run/company_search.theirstack"
payload = {
"companyDomainOr": ["posthog.com"],
"limit": 1
}
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: ['posthog.com'], limit: 1})
};
fetch('https://api.getanyapi.com/v1/run/company_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/company_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' => [
'posthog.com'
],
'limit' => 1
]),
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/company_search.theirstack"
payload := strings.NewReader("{\n \"companyDomainOr\": [\n \"posthog.com\"\n ],\n \"limit\": 1\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/company_search.theirstack")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"companyDomainOr\": [\n \"posthog.com\"\n ],\n \"limit\": 1\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.getanyapi.com/v1/run/company_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 \"posthog.com\"\n ],\n \"limit\": 1\n}"
response = http.request(request)
puts response.read_body{
"costUsd": 123,
"items": 123,
"output": {
"data": {
"companies": [
{
"name": "<string>",
"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>",
"numBuyingIntentTopics": 123,
"numJobs": 123,
"numJobsFound": 123,
"numJobsLast30Days": 123,
"numKeywords": 123,
"numTechnologies": 123,
"possibleDomains": [
"<string>"
],
"postalCode": "<string>",
"publiclyTradedExchange": "<string>",
"publiclyTradedSymbol": "<string>",
"seoDescription": "<string>",
"technologiesFound": [
{
"name": "<string>",
"category": "<string>",
"categorySlug": "<string>",
"confidence": "<string>",
"firstFoundUtc": 123,
"image": "<string>",
"jobs": 123,
"jobsLast180Days": 123,
"jobsLast30Days": 123,
"jobsLast7Days": 123,
"lastFoundUtc": 123,
"parentCategory": "<string>",
"parentCategorySlug": "<string>",
"rankWithinCategory": 123,
"relativeOccurrenceWithinCategory": 123,
"score": 123,
"slug": "<string>",
"thumbnail": "<string>",
"type": "<string>"
}
],
"technologyNames": [
"<string>"
],
"technologySlugs": [
"<string>"
],
"totalFundingUsd": 123,
"url": "<string>",
"urlSource": "<string>",
"ycBatch": "<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"
}Company Search - TheirStack
Build an account list from TheirStack by the technologies, keywords and buying-intent topics a company mentions in its job posts, plus headcount, revenue, funding, industry and location. Billed per company returned.
Price: billed per result - $199.20 per 1,000 results, capped at $9,960.00 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: Company Search - TheirStack pricing and uptime - live USD price, lane routing, and measured 30-day uptime. Every Company_search endpoint.
curl --request POST \
--url https://api.getanyapi.com/v1/run/company_search.theirstack \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"companyDomainOr": [
"posthog.com"
],
"limit": 1
}
'import requests
url = "https://api.getanyapi.com/v1/run/company_search.theirstack"
payload = {
"companyDomainOr": ["posthog.com"],
"limit": 1
}
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: ['posthog.com'], limit: 1})
};
fetch('https://api.getanyapi.com/v1/run/company_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/company_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' => [
'posthog.com'
],
'limit' => 1
]),
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/company_search.theirstack"
payload := strings.NewReader("{\n \"companyDomainOr\": [\n \"posthog.com\"\n ],\n \"limit\": 1\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/company_search.theirstack")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"companyDomainOr\": [\n \"posthog.com\"\n ],\n \"limit\": 1\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.getanyapi.com/v1/run/company_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 \"posthog.com\"\n ],\n \"limit\": 1\n}"
response = http.request(request)
puts response.read_body{
"costUsd": 123,
"items": 123,
"output": {
"data": {
"companies": [
{
"name": "<string>",
"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>",
"numBuyingIntentTopics": 123,
"numJobs": 123,
"numJobsFound": 123,
"numJobsLast30Days": 123,
"numKeywords": 123,
"numTechnologies": 123,
"possibleDomains": [
"<string>"
],
"postalCode": "<string>",
"publiclyTradedExchange": "<string>",
"publiclyTradedSymbol": "<string>",
"seoDescription": "<string>",
"technologiesFound": [
{
"name": "<string>",
"category": "<string>",
"categorySlug": "<string>",
"confidence": "<string>",
"firstFoundUtc": 123,
"image": "<string>",
"jobs": 123,
"jobsLast180Days": 123,
"jobsLast30Days": 123,
"jobsLast7Days": 123,
"lastFoundUtc": 123,
"parentCategory": "<string>",
"parentCategorySlug": "<string>",
"rankWithinCategory": 123,
"relativeOccurrenceWithinCategory": 123,
"score": 123,
"slug": "<string>",
"thumbnail": "<string>",
"type": "<string>"
}
],
"technologyNames": [
"<string>"
],
"technologySlugs": [
"<string>"
],
"totalFundingUsd": 123,
"url": "<string>",
"urlSource": "<string>",
"ycBatch": "<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.
Specify technology slugs to include detailed technology usage information for each company. The response will include a 'technologies_found' field containing metrics like confidence score, ranking, and job count for each specified technology. Note: If a technology is not listed for a company, it means that company does not use that technology. This feature is useful for enriching company data with their technology stack details.
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']
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.
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
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 <= 50Maximum 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
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
Number of results to skip. Required for offset-based pagination.
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.
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 companies that have all of these fields not null. For example, if you pass ['domain', 'linkedin_url'], it will return companies that have both domain AND linkedin_url set.
Return companies that have any of these fields not null. For example, if you pass ['domain', 'linkedin_url'], it will return companies that have a domain OR a linkedin_url set.
Filter by technologies and buying intent topics detected for the company
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
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 companies with TheirStack's firmographic record and the technology and keyword slugs found in their job posts.
Hide child attributes
Hide child attributes
Company name.
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.
Distinct buying-intent topics detected in the company's job posts.
Job posts TheirStack holds for the company, all time.
Job posts of this company that matched your job filters, when you sent any.
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.
The technologies from your technology filters that this company was matched on. Empty unless you filtered by technology.
Hide child attributes
Hide child attributes
Technology name.
Category the technology sits in.
Slug for that category.
How sure TheirStack is that the company uses it: high, medium or low.
UTC epoch timestamp in seconds (Unix time) the technology was first seen. Multiply by 1000 for a JS Date in milliseconds.
Technology logo URL.
Job posts mentioning the technology, all time.
Job posts mentioning it in the last 180 days.
Job posts mentioning it in the last 30 days.
Job posts mentioning it in the last 7 days.
UTC epoch timestamp in seconds (Unix time) the technology was last seen. Multiply by 1000 for a JS Date in milliseconds.
Parent category.
Slug for that parent category.
Rank among the company's technologies in the same category, 1 being the most used.
Share of the company's mentions within this category that are of this technology, 0 to 1.
TheirStack's own relevance score for the match.
Technology slug. This is the value the technology filters take.
Smaller technology logo URL.
Whether the row is a technology or a buying-intent keyword.
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.
Where TheirStack sourced the company website URL.
Y Combinator batch, e.g. W20, for companies that went through it.
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.