Skip to main content
POST
Technographics - TheirStack

Authorizations

Authorization
string
header
default:YOUR_ANYAPI_KEY
required

Your AnyAPI key as a Bearer token.

Headers

Idempotency-Key
string

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.

Required string length: 1 - 255

Query Parameters

fields
string

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.

max_items
integer

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.

Required range: x >= 0
summary
boolean

Optional. Return only a structural outline (top-level keys, item counts, and per-field byte sizes) instead of the full data. Does not change cost.

jq
string

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

application/json
companyDomain
string

Only return companies that match this domain exactly. It accepts full urls (https://www.google.com/) and emails (john.polo@gmail.com).

companyId
string

Only return companies that match this TheirStack Company ID exactly. This ID is temporary and internal and will change in the future and become stable. Until then, it is only meant to be used internally by our UI (app.theirstack.com). For deduplication logic, use company_domain or company_linkedin_url instead.

companyKeywordSlugOr
string[]

Return companies that have mentioned any of these keywords (technologies or buying intent topics) in their jobs. Case sensitive. Pass slugs. Check out all keywords at GET /v0/catalog/keywords

companyLinkedinUrl
string

Return companies whose LinkedIn URL matches this URL exactly.

companyName
string

Only return companies that match this name exactly, case-sensitively.

companyNameOr
string[]

Only return companies that match these names exactly, case-sensitively. Deprecated, use the company_name filter instead.

companyTechnologySlugOr
string[]

Return companies that have mentioned any of these keywords (technologies or buying intent topics) in their jobs. Case sensitive. Pass slugs. Check out all keywords at GET /v0/catalog/keywords

confidenceOr
string[]

Returns technologies with any of these confidence values that the companies use them. Available values: "high", "medium", "low"

firstDateFoundGte
string

Only return technologies where the first time they were found was after or on this date. Format: "YYYY-MM-DD"

firstDateFoundLte
string

Only return technologies where the first time they were found was before or on this date. Format: "YYYY-MM-DD"

includeTotalResults
boolean

When enabled, calculates and returns total_results and total_companies fields in the response. WARNING: This significantly slows down responses as it requires reading the entire dataset. Recommended usage: enable only for the initial request to get totals, then disable for subsequent pagination requests.

keywordCategorySlugOr
string[]

Return companies that have mentioned any keyword from any of these categories in their jobs. Case sensitive. Pass slugs. Check out all keyword categories at GET /v0/catalog/keywords/categories

keywordParentCategorySlugOr
string[]

Return companies that have mentioned any keyword from any of these parent categories in their jobs. Case sensitive. Pass slugs. Check out all keyword categories at GET /v0/catalog/keywords/categories

keywordSlugOr
string[]

Return companies that have mentioned any of these keywords (technologies or buying intent topics) in their jobs. Case sensitive. Pass slugs. Check out all keywords at GET /v0/catalog/keywords

lastDateFoundGte
string

Only return technologies where the last time they were found was after or on this date. Format: "YYYY-MM-DD"

lastDateFoundLte
string

Only return technologies where the last time they were found was before or on this date. Format: "YYYY-MM-DD"

limit
integer
default:25

Rows to return on this page, up to TheirStack's maximum of 500. Every row returned is billed.

Required range: 1 <= x <= 50
maxJobs
integer

Maximum number of jobs found by each company using a technology

maxRank
integer

The rank measures how common is a technology within its category. The technology most used among similar ones by a company will have a rank of 1, the second: 2, etc. This is useful to filter results by technology and get only results for the primary technology.

minJobs
integer

Minimum number of jobs found by each company using a technology

minRelativeOccurrence
number

Minimum value of relative_occurrence_within_category for each technology. Higher values increase the probability that this technology is actually used by the company, because it means a higher percentage of mentions to technologies among this category are of this technology.

offset
integer

Number of results to skip. Required for offset-based pagination.

orderBy
string[]

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
integer

Page number. Required when using page-based pagination.

preferLatencyUnderMs
integer

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.

Required range: x >= 1
technologyCategorySlugOr
string[]

Deprecated: use keyword_category_slug_or instead. Will return companies that have mentioned any keyword from any of these categories in their jobs. Case sensitive. Pass slugs.

technologyParentCategorySlugOr
string[]

Deprecated: use keyword_parent_category_slug_or instead. Will return companies that have mentioned any keyword from any of these parent categories in their jobs. Case sensitive. Pass slugs.

technologySlugOr
string[]

Deprecated: use keyword_slug_or instead. Will return companies that have mentioned any of these technologies in their jobs. Case sensitive. Pass slugs.

Response

Normalized result.

costUsd
number
required

USD charged on the original run. On a replay this value is echoed for parity; the replay itself is free.

items
integer
required

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.

output
Technographics - TheirStack output · object | null
required

Normalized output, or null when the replay payload was not retained.

provider
string
required

Always "AnyAPI".

replayed
boolean
required

True when this response replays the durable result of an earlier run without billing or upstream execution.

hint
string

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.

jqError
string

Present only when a jq expression failed; output then carries the full unshaped result and this explains why the reshape did not apply.

resultId
string

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.