openapi: 3.2.0 info: contact: email: support@getanyapi.com description: 'Any API, one wallet, USD, no subscriptions. Each API is a single discovered operation: send the normalized input, get a normalized result. Prices and payment outcomes are reported in USD; each operation documents the settlement policy for its enabled payment rails.' title: Company Search API version: 1.0.0 x-guidance: 'Use each operation''s published method and path with its normalized JSON input (see the operation requestBody). Before setting a client or tool timeout, GET /v1/apis/{sku} and inspect its trailing-30-day latency p50/p95/p99 and sample; p99 is an observation, not a maximum. To pay: send your AnyAPI key (Authorization: Bearer, billed from your USD wallet). For operations that advertise an inline rail, pay per call inline with x402 - call with no key, receive HTTP 402 with a PAYMENT-REQUIRED header, then retry with the PAYMENT-SIGNATURE header (base, no account needed); or pay per call inline with MPP (Machine Payments Protocol) - call with no key, receive HTTP 402 with a WWW-Authenticate: Payment challenge, then retry with the Authorization: Payment header (tempo, no account needed). x402 settles after execution; execution failure is reported as released; mpp settles before execution; execution failure is reported as charged_undelivered.' servers: - url: https://api.getanyapi.com security: - bearerAuth: [] - apiKeyAuth: [] tags: - name: Company Search x-group: Company_search paths: /v1/run/company_search.ai_ark: post: description: 'Search companies by name, lookalike domains, account filters, and saved-list filters. **Price:** billed per result - \$2.40 per 1,000 results, capped at \$240.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 - AI Ark pricing and uptime - live USD price, lane routing, and measured 30-day uptime. Every Company_search endpoint.' operationId: company_search_ai_ark parameters: - description: 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. in: query name: fields required: false schema: type: string - description: 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. in: query name: max_items required: false schema: minimum: 0 type: integer - description: 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. in: query name: summary required: false schema: type: boolean - description: '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.' in: query name: jq required: false schema: type: string - description: Optional. The most you are willing to pay for this one request, in US dollars (for example 0.05). Any route that would charge more than this is not used, so a request only ever runs on something you can afford. If nothing is available at or below your amount, the request is refused before it runs, nothing is charged, and the message tells you the cheapest price per request so you can raise it. Leave it out to accept the normal price. in: query name: max_cost_usd required: false schema: type: string - description: 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. in: header name: Idempotency-Key required: false schema: maxLength: 255 minLength: 1 type: string requestBody: content: application/json: example: name: OpenAI page: 0 size: 1 schema: additionalProperties: false example: name: OpenAI page: 0 size: 1 properties: account: additionalProperties: true description: AI Ark account filter expression. Nested generic any/all filter objects are accepted as documented by the source and are not further constrained. type: object lists: additionalProperties: true description: AI Ark saved-list filter expression. type: object lookalikeDomains: description: Domains whose company characteristics should guide the search. items: minLength: 1 type: string maxItems: 5 type: array name: description: Company-name search text. minLength: 1 type: string page: default: 0 description: Zero-based result page. minimum: 0 type: integer preferLatencyUnderMs: description: '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.' minimum: 1 type: integer size: default: 10 description: Maximum companies to return on this page. maximum: 100 minimum: 1 type: integer title: Company Search - AI Ark input type: object required: true responses: '200': content: application/json: schema: properties: costUsd: description: USD charged on the original run. On a replay this value is echoed for parity; the replay itself is free. type: number hint: description: '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.' type: string items: description: 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. type: integer jqError: description: Present only when a `jq` expression failed; `output` then carries the full unshaped result and this explains why the reshape did not apply. type: string output: anyOf: - additionalProperties: false properties: data: description: Normalized companies and page metadata, or null when no companies matched. oneOf: - type: 'null' - additionalProperties: false properties: companies: description: Companies returned on this page. items: properties: address: description: Headquarters address as published by the source. type: string city: description: Headquarters city. type: string companyId: description: The source's own record identifier for this company, exposed so you can trace a result back to the record it came from. type: string continent: description: Headquarters continent. type: string country: description: Headquarters country. type: string crunchbaseUrl: description: Company Crunchbase URL. format: uri type: string description: description: Company description when available. type: string diversityInvestmentCount: description: Number of diversity-flagged investments the source records for the company. minimum: 0 type: integer diversityInvestments: description: Investments the source has flagged with a diversity spotlight. items: properties: announcedUtc: description: UTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds. type: integer imageKey: description: The source's internal image key for the counterparty. It is a bare key, not a URL. type: string name: description: Counterparty organization name. type: string recordId: description: The source's own slug for the counterparty organization. type: string roundImageKey: description: The source's internal image key for the round. It is a bare key, not a URL. type: string roundName: description: Funding round name as published by the source. type: string roundRaisedAmount: description: Amount raised in this round in USD. minimum: 0 type: integer roundRecordId: description: The source's own slug for the funding round. type: string roundType: description: Funding round type, for example GRANT. type: string spotlights: description: Diversity spotlights the source attached to this investment. items: properties: name: description: Human-readable spotlight label. type: string recordId: description: The source's own slug for the spotlight, for example women-founded. type: string type: object type: array type: object type: array domain: description: Company website domain, or null when the upstream holds none for this company. minLength: 1 type: - string - 'null' domainLtd: description: The source's second copy of the company domain. Usually identical to domain; it can differ when the source resolves a redirect or a country domain differently, so compare the two rather than assuming they match. type: string email: description: Public company contact email. format: email type: string employeeCount: description: Estimated total employees. minimum: 0 type: integer employeeRangeMax: description: Upper bound of the published employee range. minimum: 0 type: integer employeeRangeMin: description: Lower bound of the published employee range. minimum: 0 type: integer facebookUrl: description: Canonical company Facebook URL. format: uri type: string foundedYear: description: Year the company was founded. type: integer fundedUtc: description: UTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds. type: integer fundingLastAmount: description: Amount raised in the most recent round in USD. minimum: 0 type: integer fundingLastType: description: Type of the most recent funding round. type: string fundingRoundCount: description: Number of funding rounds raised. minimum: 0 type: integer fundingRounds: description: Funding rounds the company has raised. items: properties: announcedUtc: description: UTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds. type: integer investors: description: Investors named in this round. items: type: string type: array raisedAmount: description: Amount raised in this round in USD. minimum: 0 type: integer type: description: Funding round type. type: string type: object type: array fundingTotalAmount: description: Total capital raised across all rounds in USD. minimum: 0 type: integer hashtags: description: Hashtags the company publishes under. items: type: string type: array image: description: 'Company logo URL. This is a SIGNED, EXPIRING image-proxy URL - the path carries an exp: epoch roughly five days out - so fetch and store the image promptly rather than storing this URL.' format: uri type: string industries: description: Additional company industries. items: type: string type: array industry: description: Primary company industry. type: string investorCount: description: Number of distinct investors. minimum: 0 type: integer keywords: description: Keywords describing the company. items: type: string type: array languages: description: Languages the company publishes in. items: type: string type: array latitude: description: Headquarters latitude in decimal degrees. type: number legalName: description: Registered company name when available. type: string linkedinUrl: description: Canonical company LinkedIn URL. format: uri type: string locations: description: Every office location the source lists for the company. items: properties: address: description: Location address as published by the source. type: string city: description: Location city. type: string continent: description: Location continent. type: string country: description: Location country. type: string latitude: description: Location latitude in decimal degrees. type: number longitude: description: Location longitude in decimal degrees. type: number postalCode: description: Location postal code. type: string state: description: Location state or region. type: string type: object type: array longitude: description: Headquarters longitude in decimal degrees. type: number naics: description: NAICS codes for the company. items: type: string type: array name: description: Company name. minLength: 1 type: string overview: description: Longer company overview written by the source. Overlaps description but is a separately maintained blurb and is often longer or more current. type: string phone: description: Sanitized public company phone number. type: string phoneRaw: description: The same phone number in the source's unsanitized spelling, keeping spaces, dashes and brackets. Use phone for dialing and this for display fidelity. type: string postalCode: description: Headquarters postal code. type: string revenueMax: description: Upper bound of estimated annual revenue in USD. minimum: 0 type: integer revenueMin: description: Lower bound of estimated annual revenue in USD. minimum: 0 type: integer revenueRange: description: The same annual revenue estimate as a single hyphenated range string, for example 500000000-1000000000. It duplicates revenueMin and revenueMax; use those for arithmetic. type: string seoDescription: description: The meta description the source scraped from the company website. It is site copy, not the source's own writing, so it may be in another language or out of date. type: string sic: description: SIC codes for the company. items: type: string type: array state: description: Headquarters state or region. type: string technologies: description: Technologies detected on the company's web presence. items: properties: category: description: Technology category. type: string name: description: Technology name. type: string type: object type: array twitterUrl: description: Canonical company X (Twitter) URL. format: uri type: string type: description: Company organization type. type: string updatedUtc: description: UTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds. type: integer websiteUrl: description: Canonical company website URL. format: uri type: string required: - name - domain type: object type: array page: description: Zero-based page number returned by the source. minimum: 0 type: integer size: description: Configured page size. minimum: 0 type: integer total: description: Total matching companies. minimum: 0 type: integer totalPages: description: Total result pages. minimum: 0 type: integer required: - companies - page - size - total - totalPages type: object found: description: Whether the search returned at least one company. type: boolean required: - found - data title: Company Search - AI Ark output type: object - type: 'null' description: Normalized output, or null when the replay payload was not retained. provider: description: Always "AnyAPI". type: string replayed: description: True when this response replays the durable result of an earlier run without billing or upstream execution. type: boolean resultId: description: 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. type: string required: - output - provider - costUsd - items - replayed type: object description: Normalized result. headers: Idempotency-Replayed: description: Present only when the request carried an Idempotency-Key this gateway honored. "false" means the key was claimed and the run executed freshly; "true" means it replayed a prior identical run and was NOT charged again. Absent means either no key was sent or this gateway does not honor keys, so a retry could be charged twice. schema: enum: - 'false' - 'true' type: string PAYMENT-RESPONSE: description: Inline x402 payment receipt. schema: type: string Payment-Receipt: description: Inline mpp payment receipt. schema: type: string X-PAYMENT-RESPONSE: description: Inline x402 payment receipt. schema: type: string '400': content: application/json: schema: $ref: '#/components/schemas/Error' description: Input did not match the schema, or the upstream rejected the request. '401': content: application/json: schema: $ref: '#/components/schemas/Error' description: Missing or invalid API key. '402': content: application/json: schema: oneOf: - $ref: '#/components/schemas/PaymentRequiredError' - $ref: '#/components/schemas/TrialCapReached' application/problem+json: schema: properties: challengeId: minLength: 1 type: string status: const: 402 type: integer required: - status - challengeId type: object description: Insufficient wallet balance or spend cap, or an inline-payment challenge. Agent trials receive a trial_cap_reached continuation with a live RFC 8628 device authorization. headers: PAYMENT-REQUIRED: description: Inline x402 payment challenge. schema: type: string WWW-Authenticate: description: Inline mpp payment challenge. schema: type: string '404': content: application/json: schema: $ref: '#/components/schemas/Error' description: Unknown SKU, or the upstream had no matching resource. '409': content: application/json: schema: $ref: '#/components/schemas/Error' description: 'Idempotency collision. Codes: idempotency_in_progress means retry after the Retry-After delay; idempotency_conflict means use a new key for different request semantics; idempotency_needs_review means stop retrying and contact AnyAPI support with X-Anyapi-Request-Id.' '422': content: application/json: schema: $ref: '#/components/schemas/Error' description: The request was well formed but this API cannot serve the requested target site; the body's `alternatives` array lists the AnyAPI APIs that can. '429': content: application/json: schema: $ref: '#/components/schemas/Error' description: The upstream was rate limited; inspect `payment` when present before deciding whether to retry. '500': content: application/json: schema: $ref: '#/components/schemas/Error' description: An internal error prevented completion. Inspect payment when present before retrying. '502': content: application/json: schema: $ref: '#/components/schemas/Error' description: Every provider failed with a server/transport error, or inline payment settlement could not be confirmed; inspect `payment` when present before retrying. security: - bearerAuth: [] - apiKeyAuth: [] - {} summary: Company Search - AI Ark tags: - Company Search x-mint: href: /api-reference/company-search/ai-ark x-payment-info: price: currency: USD max: '0.240000' min: '0.000000' mode: dynamic protocols: - x402: asset: '0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913' network: eip155:8453 payTo: '0x754BD2A6799e766B1E2b9f1Ae7fBdC0CeD96ef13' scheme: exact - mpp: asset: '0x20c000000000000000000000b9537d11c60e8b50' currency: USD intent: charge method: tempo network: tempo payTo: '0x754BD2A6799e766B1E2b9f1Ae7fBdC0CeD96ef13' rail: tempo scheme: exact rails: - headers: challenge: - PAYMENT-REQUIRED credential: - PAYMENT-SIGNATURE - X-PAYMENT receipt: - PAYMENT-RESPONSE - X-PAYMENT-RESPONSE pricing: currency: USD max: '0.240000' min: '0.001000' minimumUsd: '0.001000' mode: dynamic quoteBasis: floor protocol: asset: '0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913' network: eip155:8453 payTo: '0x754BD2A6799e766B1E2b9f1Ae7fBdC0CeD96ef13' scheme: exact rail: x402 settlement: onExecutionFailure: released onUnknownFinalization: indeterminate timing: after_execution - headers: challenge: - WWW-Authenticate credential: - Authorization receipt: - Payment-Receipt pricing: currency: USD max: '0.240000' min: '0.000000' minimumUsd: null mode: dynamic quoteBasis: funded_ceiling protocol: asset: '0x20c000000000000000000000b9537d11c60e8b50' currency: USD intent: charge method: tempo network: tempo payTo: '0x754BD2A6799e766B1E2b9f1Ae7fBdC0CeD96ef13' rail: tempo scheme: exact rail: mpp settlement: onExecutionFailure: charged_undelivered onVerificationError: indeterminate timing: before_execution /v1/run/company_search.crustdata_v3: post: description: 'Search companies by structured filters with cursor pagination. **Price:** billed per result - \$48.00 per 1,000 results, capped at \$12,000.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 - Crustdata v3 pricing and uptime - live USD price, lane routing, and measured 30-day uptime. Every Company_search endpoint.' operationId: company_search_crustdata_v3 parameters: - description: 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. in: query name: fields required: false schema: type: string - description: 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. in: query name: max_items required: false schema: minimum: 0 type: integer - description: 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. in: query name: summary required: false schema: type: boolean - description: '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.' in: query name: jq required: false schema: type: string - description: Optional. The most you are willing to pay for this one request, in US dollars (for example 0.05). Any route that would charge more than this is not used, so a request only ever runs on something you can afford. If nothing is available at or below your amount, the request is refused before it runs, nothing is charged, and the message tells you the cheapest price per request so you can raise it. Leave it out to accept the normal price. in: query name: max_cost_usd required: false schema: type: string - description: 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. in: header name: Idempotency-Key required: false schema: maxLength: 255 minLength: 1 type: string requestBody: content: application/json: example: filters: - filter_type: company_website_domain type: (.) value: posthog.com limit: 1 schema: additionalProperties: false example: filters: - filter_type: company_website_domain type: (.) value: posthog.com limit: 1 properties: cursor: minLength: 1 type: string fields: oneOf: - minLength: 1 type: string - items: minLength: 1 type: string minItems: 1 type: array filters: description: 'Crustdata company-database filter expression. A leaf condition is {"filter_type": , "type": , "value": }; a group is {"op": "and"|"or", "conditions": [, ...]}. Pass a single leaf, an array of leaves, or a group. See the example for a domain lookup.' oneOf: - type: object - items: type: object minItems: 1 type: array limit: default: 10 description: Maximum companies to return on this page. Every company returned is billed; the page is capped at 250 to bound the cost of a single call. maximum: 250 minimum: 1 type: integer preferLatencyUnderMs: description: '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.' minimum: 1 type: integer sorts: items: type: object type: array required: - filters title: Company Search - Crustdata v3 input type: object required: true responses: '200': content: application/json: schema: properties: costUsd: description: USD charged on the original run. On a replay this value is echoed for parity; the replay itself is free. type: number hint: description: '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.' type: string items: description: 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. type: integer jqError: description: Present only when a `jq` expression failed; `output` then carries the full unshaped result and this explains why the reshape did not apply. type: string output: anyOf: - additionalProperties: false properties: data: oneOf: - type: 'null' - additionalProperties: false properties: companies: description: Matching companies. items: properties: acquisitionStatus: description: Acquisition status, when the company has been acquired. type: string companyId: description: Crustdata identifier for the company, accepted by the Company Enrichment endpoint. type: string companyType: description: Company type, e.g. Privately Held or Public Company. type: string competitorIds: description: Crustdata identifiers for the companies Crustdata lists as competitors. These are the same identifiers companyId reports, returned here as numbers, and line up positionally with competitorWebsites. items: type: integer type: array competitorWebsites: description: Websites of companies Crustdata considers competitors. items: type: string type: array contactEmail: description: Publicly listed contact email address. type: string crunchbaseCategories: description: Crunchbase category tags. items: type: string type: array crunchbaseUrl: description: Crunchbase profile URL. format: uri type: string crunchbaseUuid: description: Crunchbase organization UUID. type: string description: description: Company description from its LinkedIn page. type: string domain: description: Primary website domain, or null when the upstream holds none for this company. type: - string - 'null' domains: description: All domains associated with the company. items: type: string type: array employeeCount: description: Latest observed employee count. type: integer employeeGrowth: description: Headcount change over trailing windows, absolute and percent. properties: absolute12m: description: Net change over the last twelve months. type: integer absolute1m: description: Net change over the last month. type: integer absolute3m: description: Net change over the last three months. type: integer absolute6m: description: Net change over the last six months. type: integer percent12m: description: Percent change over the last twelve months. type: number percent1m: description: Percent change over the last month. type: number percent3m: description: Percent change over the last three months. type: number percent6m: description: Percent change over the last six months. type: number type: object employeeRange: description: Employee count band, e.g. 51-200. type: string estimatedRevenueHigherUsd: description: Upper bound of estimated annual revenue in USD. type: integer estimatedRevenueLowerUsd: description: Lower bound of estimated annual revenue in USD. type: integer fiscalYearEnd: description: Fiscal year end. type: string followerCount: description: Latest LinkedIn follower count. type: integer followerGrowth: description: LinkedIn follower change over trailing windows, absolute and percent. properties: absolute12m: description: Net change over the last twelve months. type: integer absolute1m: description: Net change over the last month. type: integer absolute3m: description: Net change over the last three months. type: integer absolute6m: description: Net change over the last six months. type: integer percent12m: description: Percent change over the last twelve months. type: number percent1m: description: Percent change over the last month. type: number percent3m: description: Percent change over the last three months. type: number percent6m: description: Percent change over the last six months. type: number type: object foundedYear: description: Year the company was founded. type: integer growthCalculatedUtc: description: UTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds. When the growth metrics on this record were last calculated. type: integer headcountByRegion: additionalProperties: type: number description: Employee count per region, keyed by LinkedIn region name. type: object headcountByRole: additionalProperties: type: number description: Employee count per job function, keyed by LinkedIn function name. type: object headcountByRolePercent: additionalProperties: type: number description: Share of employees per job function as a percent, keyed by LinkedIn function name. type: object headcountBySkill: additionalProperties: type: number description: Employee count per listed skill, keyed by skill name. type: object headcountBySkillPercent: additionalProperties: type: number description: Share of employees per listed skill as a percent, keyed by skill name. type: object headquarters: description: Headquarters location. type: string hqCountry: description: Country of the headquarters. type: string hqLocationAddressComponents: description: The headquarters location split into address components (city, state, country). Restates headquarters in parts. items: type: string type: array hqStreetAddressAndCity: description: Headquarters street address and city. Crustdata returns the same string as headquarters for most companies. type: string image: description: Company logo URL. format: uri type: string indexedUtc: description: UTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds. When Crustdata last indexed the record for search, which is usually just after updatedUtc. type: integer industries: description: All LinkedIn industries listed for the company. items: type: string type: array industry: description: Primary LinkedIn industry. type: string investors: description: Investors named on the Crunchbase profile. items: type: string type: array isInvestor: description: True when the company itself invests in other companies. type: boolean largestHeadcountCountry: description: Country holding the largest share of employees. type: string lastFundingType: description: Type of the most recent funding round, e.g. series_e. type: string lastFundingUsd: description: Amount raised in the most recent funding round, in USD. type: integer lastFundingUtc: description: UTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds. Date of the most recent funding round. type: integer linkedinCategories: description: LinkedIn speciality tags listed by the company. items: type: string type: array linkedinCompanyId: description: LinkedIn's own numeric identifier for the company page. type: string linkedinProfileName: description: Company name as it appears on the LinkedIn page. Usually the same value as name; Crustdata returns both. type: string linkedinUrl: description: LinkedIn company page URL. format: uri type: string markets: description: Markets the company trades in, e.g. PRIVATE or NASDAQ. items: type: string type: array name: description: Company name. type: string officeAddresses: description: 'Office addresses exactly as Crustdata returns them. Untyped passthrough: the structure ships verbatim and is not validated, because it was empty for every company we captured.' phone: description: Publicly listed phone number. type: string roleGrowth6mPercent: additionalProperties: type: number description: Six-month percent headcount change per job function, keyed by LinkedIn function name. type: object roleGrowthYoyPercent: additionalProperties: type: number description: Year-over-year percent headcount change per job function, keyed by LinkedIn function name. type: object stockSymbols: description: Stock ticker symbols. items: type: string type: array totalFundingUsd: description: Total investment raised to date, in USD. type: integer tracxnInvestors: description: 'Investors sourced from Tracxn, exactly as Crustdata returns them. Untyped passthrough: the structure ships verbatim and is not validated, because it was empty for every company we captured.' twitterUrl: description: X (Twitter) profile URL. format: uri type: string updatedUtc: description: UTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds. When this company record was last refreshed. type: integer valuationLowerUsd: description: Lower bound of the reported valuation in USD. type: integer valuationUsd: description: Reported valuation in USD. type: integer website: description: Company website URL. format: uri type: string required: - name type: object type: array hasMore: description: True when more companies exist beyond this page. type: boolean nextCursor: description: Opaque continuation token; null when the walk is complete. type: - string - 'null' totalCount: description: Total number of companies matching the filters. minimum: 0 type: integer required: - companies type: object found: description: False when the filters matched no companies. type: boolean required: - found - data title: Company Search - Crustdata v3 output type: object - type: 'null' description: Normalized output, or null when the replay payload was not retained. provider: description: Always "AnyAPI". type: string replayed: description: True when this response replays the durable result of an earlier run without billing or upstream execution. type: boolean resultId: description: 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. type: string required: - output - provider - costUsd - items - replayed type: object description: Normalized result. headers: Idempotency-Replayed: description: Present only when the request carried an Idempotency-Key this gateway honored. "false" means the key was claimed and the run executed freshly; "true" means it replayed a prior identical run and was NOT charged again. Absent means either no key was sent or this gateway does not honor keys, so a retry could be charged twice. schema: enum: - 'false' - 'true' type: string PAYMENT-RESPONSE: description: Inline x402 payment receipt. schema: type: string Payment-Receipt: description: Inline mpp payment receipt. schema: type: string X-PAYMENT-RESPONSE: description: Inline x402 payment receipt. schema: type: string '400': content: application/json: schema: $ref: '#/components/schemas/Error' description: Input did not match the schema, or the upstream rejected the request. '401': content: application/json: schema: $ref: '#/components/schemas/Error' description: Missing or invalid API key. '402': content: application/json: schema: oneOf: - $ref: '#/components/schemas/PaymentRequiredError' - $ref: '#/components/schemas/TrialCapReached' application/problem+json: schema: properties: challengeId: minLength: 1 type: string status: const: 402 type: integer required: - status - challengeId type: object description: Insufficient wallet balance or spend cap, or an inline-payment challenge. Agent trials receive a trial_cap_reached continuation with a live RFC 8628 device authorization. headers: PAYMENT-REQUIRED: description: Inline x402 payment challenge. schema: type: string WWW-Authenticate: description: Inline mpp payment challenge. schema: type: string '404': content: application/json: schema: $ref: '#/components/schemas/Error' description: Unknown SKU, or the upstream had no matching resource. '409': content: application/json: schema: $ref: '#/components/schemas/Error' description: 'Idempotency collision. Codes: idempotency_in_progress means retry after the Retry-After delay; idempotency_conflict means use a new key for different request semantics; idempotency_needs_review means stop retrying and contact AnyAPI support with X-Anyapi-Request-Id.' '422': content: application/json: schema: $ref: '#/components/schemas/Error' description: The request was well formed but this API cannot serve the requested target site; the body's `alternatives` array lists the AnyAPI APIs that can. '429': content: application/json: schema: $ref: '#/components/schemas/Error' description: The upstream was rate limited; inspect `payment` when present before deciding whether to retry. '500': content: application/json: schema: $ref: '#/components/schemas/Error' description: An internal error prevented completion. Inspect payment when present before retrying. '502': content: application/json: schema: $ref: '#/components/schemas/Error' description: Every provider failed with a server/transport error, or inline payment settlement could not be confirmed; inspect `payment` when present before retrying. security: - bearerAuth: [] - apiKeyAuth: [] - {} summary: Company Search - Crustdata v3 tags: - Company Search x-mint: href: /api-reference/company-search/crustdata-v3 x-payment-info: price: currency: USD max: '12.000000' min: '0.000000' mode: dynamic protocols: - x402: asset: '0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913' network: eip155:8453 payTo: '0x754BD2A6799e766B1E2b9f1Ae7fBdC0CeD96ef13' scheme: exact - mpp: asset: '0x20c000000000000000000000b9537d11c60e8b50' currency: USD intent: charge method: tempo network: tempo payTo: '0x754BD2A6799e766B1E2b9f1Ae7fBdC0CeD96ef13' rail: tempo scheme: exact rails: - headers: challenge: - PAYMENT-REQUIRED credential: - PAYMENT-SIGNATURE - X-PAYMENT receipt: - PAYMENT-RESPONSE - X-PAYMENT-RESPONSE pricing: currency: USD max: '12.000000' min: '0.001000' minimumUsd: '0.001000' mode: dynamic quoteBasis: floor protocol: asset: '0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913' network: eip155:8453 payTo: '0x754BD2A6799e766B1E2b9f1Ae7fBdC0CeD96ef13' scheme: exact rail: x402 settlement: onExecutionFailure: released onUnknownFinalization: indeterminate timing: after_execution - headers: challenge: - WWW-Authenticate credential: - Authorization receipt: - Payment-Receipt pricing: currency: USD max: '12.000000' min: '0.000000' minimumUsd: null mode: dynamic quoteBasis: funded_ceiling protocol: asset: '0x20c000000000000000000000b9537d11c60e8b50' currency: USD intent: charge method: tempo network: tempo payTo: '0x754BD2A6799e766B1E2b9f1Ae7fBdC0CeD96ef13' rail: tempo scheme: exact rail: mpp settlement: onExecutionFailure: charged_undelivered onVerificationError: indeterminate timing: before_execution /v1/run/company_search.fullenrich: post: description: 'Build an account list from FullEnrich by name, domain, industry, specialty, ownership type, headcount, founding year and headquarters, with full firmographics and every office on each row. Billed per company returned. **Price:** billed per result - \$25.20 per 1,000 results, capped at \$2,520.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 - FullEnrich pricing and uptime - live USD price, lane routing, and measured 30-day uptime. Every Company_search endpoint.' operationId: company_search_fullenrich parameters: - description: 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. in: query name: fields required: false schema: type: string - description: 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. in: query name: max_items required: false schema: minimum: 0 type: integer - description: 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. in: query name: summary required: false schema: type: boolean - description: '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.' in: query name: jq required: false schema: type: string - description: Optional. The most you are willing to pay for this one request, in US dollars (for example 0.05). Any route that would charge more than this is not used, so a request only ever runs on something you can afford. If nothing is available at or below your amount, the request is refused before it runs, nothing is charged, and the message tells you the cheapest price per request so you can raise it. Leave it out to accept the normal price. in: query name: max_cost_usd required: false schema: type: string - description: 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. in: header name: Idempotency-Key required: false schema: maxLength: 255 minLength: 1 type: string requestBody: content: application/json: example: domains: - exact_match: true value: stripe.com limit: 1 schema: additionalProperties: false example: domains: - exact_match: true value: stripe.com limit: 1 minProperties: 1 properties: companyIds: description: 'Filter by FullEnrich company id. Each entry is an object taking a `value` string and an optional `exact_match` boolean, e.g. [{"value": "stripe.com", "exact_match": true}]. A bare string is rejected.' items: additionalProperties: true properties: exact_match: description: Require an exact match rather than a fuzzy one. type: boolean value: description: The value to match. type: string type: object type: array cursor: description: Cursor from a previous response's nextCursor. Works at any depth, including past the 10000 offset ceiling. type: string domains: description: 'Filter by company domain, e.g. stripe.com. Each entry is an object taking a `value` string and an optional `exact_match` boolean, e.g. [{"value": "stripe.com", "exact_match": true}]. A bare string is rejected.' items: additionalProperties: true properties: exact_match: description: Require an exact match rather than a fuzzy one. type: boolean value: description: The value to match. type: string type: object type: array foundedYears: description: 'Filter by founding year. Each entry is an object taking a `value` string and an optional `exact_match` boolean, e.g. [{"value": "stripe.com", "exact_match": true}]. A bare string is rejected.' items: additionalProperties: true properties: exact_match: description: Require an exact match rather than a fuzzy one. type: boolean value: description: The value to match. type: string type: object type: array headcounts: description: 'Filter by employee headcount band. Each entry is an object taking a `value` string and an optional `exact_match` boolean, e.g. [{"value": "stripe.com", "exact_match": true}]. A bare string is rejected.' items: additionalProperties: true properties: exact_match: description: Require an exact match rather than a fuzzy one. type: boolean value: description: The value to match. type: string type: object type: array headquartersLocations: description: 'Filter by headquarters city, region or country. Each entry is an object taking a `value` string and an optional `exact_match` boolean, e.g. [{"value": "stripe.com", "exact_match": true}]. A bare string is rejected.' items: additionalProperties: true properties: exact_match: description: Require an exact match rather than a fuzzy one. type: boolean value: description: The value to match. type: string type: object type: array industries: description: 'Filter by company industry, e.g. Software Development. Each entry is an object taking a `value` string and an optional `exact_match` boolean, e.g. [{"value": "stripe.com", "exact_match": true}]. A bare string is rejected.' items: additionalProperties: true properties: exact_match: description: Require an exact match rather than a fuzzy one. type: boolean value: description: The value to match. type: string type: object type: array keywords: description: 'Filter by words in the company description. Each entry is an object taking a `value` string and an optional `exact_match` boolean, e.g. [{"value": "stripe.com", "exact_match": true}]. A bare string is rejected.' items: additionalProperties: true properties: exact_match: description: Require an exact match rather than a fuzzy one. type: boolean value: description: The value to match. type: string type: object type: array limit: default: 10 description: Rows to return on this page, up to FullEnrich's maximum of 100. Every row returned is billed. maximum: 100 minimum: 1 type: integer linkedinUrls: description: 'Filter by company LinkedIn URL. Each entry is an object taking a `value` string and an optional `exact_match` boolean, e.g. [{"value": "stripe.com", "exact_match": true}]. A bare string is rejected.' items: additionalProperties: true properties: exact_match: description: Require an exact match rather than a fuzzy one. type: boolean value: description: The value to match. type: string type: object type: array names: description: 'Filter by company name. Each entry is an object taking a `value` string and an optional `exact_match` boolean, e.g. [{"value": "stripe.com", "exact_match": true}]. A bare string is rejected.' items: additionalProperties: true properties: exact_match: description: Require an exact match rather than a fuzzy one. type: boolean value: description: The value to match. type: string type: object type: array offset: default: 0 description: Rows to skip. FullEnrich caps offset at 10000; past that, page with cursor. minimum: 0 type: integer preferLatencyUnderMs: description: '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.' minimum: 1 type: integer specialties: description: 'Filter by company specialty. Each entry is an object taking a `value` string and an optional `exact_match` boolean, e.g. [{"value": "stripe.com", "exact_match": true}]. A bare string is rejected.' items: additionalProperties: true properties: exact_match: description: Require an exact match rather than a fuzzy one. type: boolean value: description: The value to match. type: string type: object type: array types: description: 'Filter by ownership type, e.g. Public Company, Privately Held, Nonprofit. Each entry is an object taking a `value` string and an optional `exact_match` boolean, e.g. [{"value": "stripe.com", "exact_match": true}]. A bare string is rejected.' items: additionalProperties: true properties: exact_match: description: Require an exact match rather than a fuzzy one. type: boolean value: description: The value to match. type: string type: object type: array title: Company Search - FullEnrich input type: object required: true responses: '200': content: application/json: schema: properties: costUsd: description: USD charged on the original run. On a replay this value is echoed for parity; the replay itself is free. type: number hint: description: '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.' type: string items: description: 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. type: integer jqError: description: Present only when a `jq` expression failed; `output` then carries the full unshaped result and this explains why the reshape did not apply. type: string output: anyOf: - additionalProperties: false properties: data: description: One page of matching records plus FullEnrich's paging state. oneOf: - type: 'null' - additionalProperties: false properties: companies: description: Matching companies with FullEnrich's firmographic record. items: properties: companyId: description: FullEnrich's own company identifier. type: string companyType: description: Ownership type, e.g. Public Company, Privately Held. type: string description: description: Company description. type: string domain: description: Primary company domain. type: string foundedYear: description: Year the company was founded. Zero when FullEnrich holds none. type: integer headcount: description: Employees FullEnrich currently counts. type: integer headcountRange: description: Employee headcount band, e.g. 5001-10000. type: string headquarters: description: Headquarters address. properties: city: description: City. type: string country: description: Country name. type: string countryCode: description: ISO 3166-1 alpha-2 country code. type: string line1: description: First address line. type: string line2: description: Second address line, carrying city, region, postal code and country. type: string region: description: State or region. type: string type: object image: description: Company logo URL. format: uri type: string industry: description: Main industry. type: string linkedinFollowers: description: LinkedIn follower count. type: integer linkedinHandle: description: Company LinkedIn vanity handle. type: string linkedinId: description: Company LinkedIn numeric id. type: string linkedinUrl: description: Company LinkedIn page URL. format: uri type: string name: description: Company name. type: string offices: description: Every other office FullEnrich holds for the company. items: properties: line1: description: First address line. type: string line2: description: Second address line, carrying city, region, postal code and country. type: string type: object type: array specialties: description: Specialties the company lists for itself. items: type: string type: array website: description: Company website URL. format: uri type: string required: - name type: object type: array nextCursor: description: Cursor for the next page, or null when this lane is complete. Send it back as cursor. type: - string - 'null' offset: description: Rows skipped before this page. type: integer total: description: Rows matching the filters across all pages. type: integer required: - companies type: object found: description: False when nothing matched the filters. type: boolean required: - found - data title: Company Search - FullEnrich output type: object - type: 'null' description: Normalized output, or null when the replay payload was not retained. provider: description: Always "AnyAPI". type: string replayed: description: True when this response replays the durable result of an earlier run without billing or upstream execution. type: boolean resultId: description: 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. type: string required: - output - provider - costUsd - items - replayed type: object description: Normalized result. headers: Idempotency-Replayed: description: Present only when the request carried an Idempotency-Key this gateway honored. "false" means the key was claimed and the run executed freshly; "true" means it replayed a prior identical run and was NOT charged again. Absent means either no key was sent or this gateway does not honor keys, so a retry could be charged twice. schema: enum: - 'false' - 'true' type: string PAYMENT-RESPONSE: description: Inline x402 payment receipt. schema: type: string Payment-Receipt: description: Inline mpp payment receipt. schema: type: string X-PAYMENT-RESPONSE: description: Inline x402 payment receipt. schema: type: string '400': content: application/json: schema: $ref: '#/components/schemas/Error' description: Input did not match the schema, or the upstream rejected the request. '401': content: application/json: schema: $ref: '#/components/schemas/Error' description: Missing or invalid API key. '402': content: application/json: schema: oneOf: - $ref: '#/components/schemas/PaymentRequiredError' - $ref: '#/components/schemas/TrialCapReached' application/problem+json: schema: properties: challengeId: minLength: 1 type: string status: const: 402 type: integer required: - status - challengeId type: object description: Insufficient wallet balance or spend cap, or an inline-payment challenge. Agent trials receive a trial_cap_reached continuation with a live RFC 8628 device authorization. headers: PAYMENT-REQUIRED: description: Inline x402 payment challenge. schema: type: string WWW-Authenticate: description: Inline mpp payment challenge. schema: type: string '404': content: application/json: schema: $ref: '#/components/schemas/Error' description: Unknown SKU, or the upstream had no matching resource. '409': content: application/json: schema: $ref: '#/components/schemas/Error' description: 'Idempotency collision. Codes: idempotency_in_progress means retry after the Retry-After delay; idempotency_conflict means use a new key for different request semantics; idempotency_needs_review means stop retrying and contact AnyAPI support with X-Anyapi-Request-Id.' '422': content: application/json: schema: $ref: '#/components/schemas/Error' description: The request was well formed but this API cannot serve the requested target site; the body's `alternatives` array lists the AnyAPI APIs that can. '429': content: application/json: schema: $ref: '#/components/schemas/Error' description: The upstream was rate limited; inspect `payment` when present before deciding whether to retry. '500': content: application/json: schema: $ref: '#/components/schemas/Error' description: An internal error prevented completion. Inspect payment when present before retrying. '502': content: application/json: schema: $ref: '#/components/schemas/Error' description: Every provider failed with a server/transport error, or inline payment settlement could not be confirmed; inspect `payment` when present before retrying. security: - bearerAuth: [] - apiKeyAuth: [] - {} summary: Company Search - FullEnrich tags: - Company Search x-mint: href: /api-reference/company-search/fullenrich x-payment-info: price: currency: USD max: '2.520000' min: '0.000000' mode: dynamic protocols: - x402: asset: '0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913' network: eip155:8453 payTo: '0x754BD2A6799e766B1E2b9f1Ae7fBdC0CeD96ef13' scheme: exact - mpp: asset: '0x20c000000000000000000000b9537d11c60e8b50' currency: USD intent: charge method: tempo network: tempo payTo: '0x754BD2A6799e766B1E2b9f1Ae7fBdC0CeD96ef13' rail: tempo scheme: exact rails: - headers: challenge: - PAYMENT-REQUIRED credential: - PAYMENT-SIGNATURE - X-PAYMENT receipt: - PAYMENT-RESPONSE - X-PAYMENT-RESPONSE pricing: currency: USD max: '2.520000' min: '0.001000' minimumUsd: '0.001000' mode: dynamic quoteBasis: floor protocol: asset: '0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913' network: eip155:8453 payTo: '0x754BD2A6799e766B1E2b9f1Ae7fBdC0CeD96ef13' scheme: exact rail: x402 settlement: onExecutionFailure: released onUnknownFinalization: indeterminate timing: after_execution - headers: challenge: - WWW-Authenticate credential: - Authorization receipt: - Payment-Receipt pricing: currency: USD max: '2.520000' min: '0.000000' minimumUsd: null mode: dynamic quoteBasis: funded_ceiling protocol: asset: '0x20c000000000000000000000b9537d11c60e8b50' currency: USD intent: charge method: tempo network: tempo payTo: '0x754BD2A6799e766B1E2b9f1Ae7fBdC0CeD96ef13' rail: tempo scheme: exact rail: mpp settlement: onExecutionFailure: charged_undelivered onVerificationError: indeterminate timing: before_execution /v1/run/company_search.peopledatalabs: post: description: 'Search People Data Labs'' company dataset with SQL or an Elasticsearch query and get the full firmographic record back, including funding history and the headcount growth, tenure and churn series. Billed per company returned. **Price:** billed per result - \$120.00 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 - People Data Labs pricing and uptime - live USD price, lane routing, and measured 30-day uptime. Every Company_search endpoint.' operationId: company_search_peopledatalabs parameters: - description: 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. in: query name: fields required: false schema: type: string - description: 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. in: query name: max_items required: false schema: minimum: 0 type: integer - description: 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. in: query name: summary required: false schema: type: boolean - description: '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.' in: query name: jq required: false schema: type: string - description: Optional. The most you are willing to pay for this one request, in US dollars (for example 0.05). Any route that would charge more than this is not used, so a request only ever runs on something you can afford. If nothing is available at or below your amount, the request is refused before it runs, nothing is charged, and the message tells you the cheapest price per request so you can raise it. Leave it out to accept the normal price. in: query name: max_cost_usd required: false schema: type: string - description: 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. in: header name: Idempotency-Key required: false schema: maxLength: 255 minLength: 1 type: string requestBody: content: application/json: example: limit: 1 sql: SELECT * FROM company WHERE website = 'posthog.com' schema: additionalProperties: false anyOf: - required: - sql - required: - query example: limit: 1 sql: SELECT * FROM company WHERE website = 'posthog.com' properties: dataInclude: description: Comma-separated People Data Labs fields to include, or a leading - list to exclude. Projection changes the payload only; billing still follows companies returned. type: string limit: default: 10 description: Maximum companies to return. Every company returned is billed, so start at 1 to check a query and read total before asking for more. maximum: 83 minimum: 1 type: integer preferLatencyUnderMs: description: '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.' minimum: 1 type: integer query: additionalProperties: true description: 'Elasticsearch-style query over the People Data Labs company dataset, e.g. {"bool": {"must": [{"term": {"website": "posthog.com"}}]}}. Send this or sql, never both.' type: object sql: description: People Data Labs SQL, in the form SELECT * FROM company WHERE ... . String literals take single quotes, only SELECT * is supported, and field names must be real People Data Labs company fields including nested subfields such as location.country. Do not include a LIMIT clause; People Data Labs rejects it. Use limit instead. Send this or query, never both. minLength: 1 type: string titlecase: description: Return text in title case instead of People Data Labs' lowercase default. type: boolean title: Company Search - People Data Labs input type: object required: true responses: '200': content: application/json: schema: properties: costUsd: description: USD charged on the original run. On a replay this value is echoed for parity; the replay itself is free. type: number hint: description: '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.' type: string items: description: 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. type: integer jqError: description: Present only when a `jq` expression failed; `output` then carries the full unshaped result and this explains why the reshape did not apply. type: string output: anyOf: - additionalProperties: false properties: data: description: The matching companies plus the total the query matched. People Data Labs paginates with a scroll token that is not exposed here, so a call returns one page and total tells you how much is behind it. oneOf: - type: 'null' - additionalProperties: false properties: companies: description: Matching company records, up to limit. items: properties: affiliatedEntities: description: People Data Labs company ids of affiliated entities. items: type: string type: array affiliatedProfiles: description: People Data Labs company ids of affiliated profiles. items: type: string type: array allSubsidiaries: description: People Data Labs company ids of every subsidiary, at any depth. items: type: string type: array alternativeDomains: description: Other domains the company owns. items: type: string type: array alternativeNames: description: Other names the company trades under. items: type: string type: array averageEmployeeTenure: description: Average employee tenure in years. type: number averageTenureByLevel: additionalProperties: true description: Average tenure in years, keyed by seniority level. type: object averageTenureByRole: additionalProperties: true description: Average tenure in years, keyed by role. type: object directSubsidiaries: description: People Data Labs company ids of direct subsidiaries. items: type: string type: array employeeChurnRate: additionalProperties: true description: Churn rate keyed by window, e.g. 12_month. type: object employeeCount: description: Employees People Data Labs currently counts. type: integer employeeCountByClass: additionalProperties: true description: Headcount keyed by job class. type: object employeeCountByCountry: additionalProperties: true description: Headcount keyed by country. type: object employeeCountByMonth: additionalProperties: true description: Headcount keyed by YYYY-MM month. type: object employeeCountByRole: additionalProperties: true description: Headcount keyed by role. type: object employeeCountBySubRole: additionalProperties: true description: Headcount keyed by sub-role. type: object employeeGrowthRate: additionalProperties: true description: Headcount growth rate keyed by window. type: object employeeGrowthRate12MonthByClass: additionalProperties: true description: Twelve-month headcount growth rate keyed by job class. type: object employeeGrowthRate12MonthByCountry: additionalProperties: true description: Twelve-month headcount growth keyed by country, each entry carrying current and prior headcount. type: object employeeGrowthRate12MonthByRole: additionalProperties: true description: Twelve-month headcount growth rate keyed by role. type: object employeeTurnoverRate: additionalProperties: true description: Turnover rate keyed by window, e.g. 3_month, 12_month. type: object facebookUrl: description: Company Facebook page URL. format: uri type: string founded: description: Year the company was founded. type: integer fundingRounds: description: Number of funding rounds raised. type: integer fundingStages: description: Every funding stage the company has raised. items: type: string type: array grossAdditionsByMonth: additionalProperties: true description: Employees joined, keyed by YYYY-MM month. type: object grossDeparturesByMonth: additionalProperties: true description: Employees departed, keyed by YYYY-MM month. type: object headline: description: One-line company tagline. type: string immediateParent: description: People Data Labs company id of the immediate parent company. type: string industry: description: Company industry. type: string industryV2: description: Company industry on People Data Labs' newer taxonomy. type: string inferredRevenue: description: Inferred annual revenue band, e.g. $50M-$100M. type: string lastFundingUtc: description: UTC epoch timestamp in seconds (Unix time) of the most recent funding round. Multiply by 1000 for a JS Date in milliseconds. type: number latestFundingStage: description: Most recent funding stage, e.g. series_e. type: string linkedinFollowers: description: LinkedIn follower count. type: integer linkedinId: description: Company LinkedIn numeric id. type: string linkedinSlug: description: Company LinkedIn vanity slug. type: string linkedinUrl: description: Company LinkedIn page URL. format: uri type: string location: description: Company headquarters. properties: addressLine2: description: Second line of the address. type: string continent: description: Continent. type: string country: description: Country. type: string geo: description: Coordinates as "lat,lon". type: string locality: description: City. type: string metro: description: Metro area. type: string name: description: Location as one display string. type: string postalCode: description: Postal code. type: string region: description: State or region. type: string streetAddress: description: Street address. type: string type: object medianEmployeeTenure: description: Median employee tenure in years. type: number medianTenureByLevel: additionalProperties: true description: Median tenure in years, keyed by seniority level. type: object medianTenureByRole: additionalProperties: true description: Median tenure in years, keyed by role. type: object micExchange: description: MIC code of the exchange the company lists on. type: string naicsCodes: description: NAICS classification for the company. items: properties: code: description: NAICS code. type: string industryGroup: description: NAICS industry group. type: string naicsIndustry: description: NAICS industry. type: string nationalIndustry: description: NAICS national industry. type: string sector: description: NAICS sector. type: string subSector: description: NAICS sub-sector. type: string required: - code type: object type: array name: description: Company name as People Data Labs displays it. type: string nameNormalized: description: Lowercase normalized company name, the form People Data Labs matches on. type: string pdlId: description: People Data Labs persistent company id. type: string profiles: description: Every social profile People Data Labs links to the company. items: type: string type: array sicCodes: description: SIC classification for the company. items: properties: code: description: SIC code. type: string industryGroup: description: SIC industry group. type: string industrySector: description: SIC industry sector. type: string majorGroup: description: SIC major group. type: string required: - code type: object type: array size: description: Employee headcount band, e.g. 11-50. type: string summary: description: Long company description. type: string tags: description: Descriptive tags for the company. items: type: string type: array ticker: description: Stock ticker, for listed companies. type: string totalFundingRaised: description: Total capital raised, in USD. type: number twitterUrl: description: Company X (Twitter) profile URL. format: uri type: string type: description: Ownership type, e.g. private, public. type: string ultimateParent: description: People Data Labs company id of the ultimate parent company. type: string website: description: Company website domain. type: string required: - name type: object type: array datasetVersion: description: Version of the People Data Labs dataset these records came from. type: string total: description: Companies matching the query across the whole dataset, not just this page. type: integer required: - companies type: object found: description: False when the query matched no company. type: boolean required: - found - data title: Company Search - People Data Labs output type: object - type: 'null' description: Normalized output, or null when the replay payload was not retained. provider: description: Always "AnyAPI". type: string replayed: description: True when this response replays the durable result of an earlier run without billing or upstream execution. type: boolean resultId: description: 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. type: string required: - output - provider - costUsd - items - replayed type: object description: Normalized result. headers: Idempotency-Replayed: description: Present only when the request carried an Idempotency-Key this gateway honored. "false" means the key was claimed and the run executed freshly; "true" means it replayed a prior identical run and was NOT charged again. Absent means either no key was sent or this gateway does not honor keys, so a retry could be charged twice. schema: enum: - 'false' - 'true' type: string PAYMENT-RESPONSE: description: Inline x402 payment receipt. schema: type: string Payment-Receipt: description: Inline mpp payment receipt. schema: type: string X-PAYMENT-RESPONSE: description: Inline x402 payment receipt. schema: type: string '400': content: application/json: schema: $ref: '#/components/schemas/Error' description: Input did not match the schema, or the upstream rejected the request. '401': content: application/json: schema: $ref: '#/components/schemas/Error' description: Missing or invalid API key. '402': content: application/json: schema: oneOf: - $ref: '#/components/schemas/PaymentRequiredError' - $ref: '#/components/schemas/TrialCapReached' application/problem+json: schema: properties: challengeId: minLength: 1 type: string status: const: 402 type: integer required: - status - challengeId type: object description: Insufficient wallet balance or spend cap, or an inline-payment challenge. Agent trials receive a trial_cap_reached continuation with a live RFC 8628 device authorization. headers: PAYMENT-REQUIRED: description: Inline x402 payment challenge. schema: type: string WWW-Authenticate: description: Inline mpp payment challenge. schema: type: string '404': content: application/json: schema: $ref: '#/components/schemas/Error' description: Unknown SKU, or the upstream had no matching resource. '409': content: application/json: schema: $ref: '#/components/schemas/Error' description: 'Idempotency collision. Codes: idempotency_in_progress means retry after the Retry-After delay; idempotency_conflict means use a new key for different request semantics; idempotency_needs_review means stop retrying and contact AnyAPI support with X-Anyapi-Request-Id.' '422': content: application/json: schema: $ref: '#/components/schemas/Error' description: The request was well formed but this API cannot serve the requested target site; the body's `alternatives` array lists the AnyAPI APIs that can. '429': content: application/json: schema: $ref: '#/components/schemas/Error' description: The upstream was rate limited; inspect `payment` when present before deciding whether to retry. '500': content: application/json: schema: $ref: '#/components/schemas/Error' description: An internal error prevented completion. Inspect payment when present before retrying. '502': content: application/json: schema: $ref: '#/components/schemas/Error' description: Every provider failed with a server/transport error, or inline payment settlement could not be confirmed; inspect `payment` when present before retrying. security: - bearerAuth: [] - apiKeyAuth: [] - {} summary: Company Search - People Data Labs tags: - Company Search x-mint: href: /api-reference/company-search/peopledatalabs x-payment-info: price: currency: USD max: '9.960000' min: '0.000000' mode: dynamic protocols: - x402: asset: '0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913' network: eip155:8453 payTo: '0x754BD2A6799e766B1E2b9f1Ae7fBdC0CeD96ef13' scheme: exact - mpp: asset: '0x20c000000000000000000000b9537d11c60e8b50' currency: USD intent: charge method: tempo network: tempo payTo: '0x754BD2A6799e766B1E2b9f1Ae7fBdC0CeD96ef13' rail: tempo scheme: exact rails: - headers: challenge: - PAYMENT-REQUIRED credential: - PAYMENT-SIGNATURE - X-PAYMENT receipt: - PAYMENT-RESPONSE - X-PAYMENT-RESPONSE pricing: currency: USD max: '9.960000' min: '0.001000' minimumUsd: '0.001000' mode: dynamic quoteBasis: floor protocol: asset: '0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913' network: eip155:8453 payTo: '0x754BD2A6799e766B1E2b9f1Ae7fBdC0CeD96ef13' scheme: exact rail: x402 settlement: onExecutionFailure: released onUnknownFinalization: indeterminate timing: after_execution - headers: challenge: - WWW-Authenticate credential: - Authorization receipt: - Payment-Receipt pricing: currency: USD max: '9.960000' min: '0.000000' minimumUsd: null mode: dynamic quoteBasis: funded_ceiling protocol: asset: '0x20c000000000000000000000b9537d11c60e8b50' currency: USD intent: charge method: tempo network: tempo payTo: '0x754BD2A6799e766B1E2b9f1Ae7fBdC0CeD96ef13' rail: tempo scheme: exact rail: mpp settlement: onExecutionFailure: charged_undelivered onVerificationError: indeterminate timing: before_execution /v1/run/company_search.prospeo: post: description: 'Build an account list from Prospeo by industry, headcount, revenue, location, technology, funding and hiring activity. One flat price per page of 25. **Price:** \$66.00 per 1,000 requests (flat per request - same cost regardless of results returned). **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 - Prospeo pricing and uptime - live USD price, lane routing, and measured 30-day uptime. Every Company_search endpoint.' operationId: company_search_prospeo parameters: - description: 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. in: query name: fields required: false schema: type: string - description: 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. in: query name: max_items required: false schema: minimum: 0 type: integer - description: 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. in: query name: summary required: false schema: type: boolean - description: '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.' in: query name: jq required: false schema: type: string - description: Optional. The most you are willing to pay for this one request, in US dollars (for example 0.05). Any route that would charge more than this is not used, so a request only ever runs on something you can afford. If nothing is available at or below your amount, the request is refused before it runs, nothing is charged, and the message tells you the cheapest price per request so you can raise it. Leave it out to accept the normal price. in: query name: max_cost_usd required: false schema: type: string - description: 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. in: header name: Idempotency-Key required: false schema: maxLength: 255 minLength: 1 type: string requestBody: content: application/json: example: company: websites: include: - stripe.com page: 1 schema: additionalProperties: false example: company: websites: include: - stripe.com page: 1 minProperties: 1 properties: company: additionalProperties: true description: 'Filter by company names or websites, e.g. {"names": {"include": ["Stripe"]}, "websites": {"include": ["stripe.com"]}}.' type: object companyAttributes: additionalProperties: true description: Filter by company characteristics, e.g. B2B, has pricing, has a free trial. type: object companyEmailProvider: description: Filter by the company's email MX provider. items: type: string type: array companyFounded: additionalProperties: true description: Filter by founding year range. type: object companyFunding: additionalProperties: true description: Filter by funding stage or amount raised. type: object companyHeadcountByDepartment: description: Filter by headcount within a department. items: type: string type: array companyHeadcountCustom: additionalProperties: true description: Filter by a custom employee count range. type: object companyHeadcountGrowth: additionalProperties: true description: Filter by headcount growth. type: object companyHeadcountRange: description: Filter by Prospeo's predefined employee count bands. items: type: string type: array companyIndustry: additionalProperties: true description: Filter by company industry. type: object companyJobPostingHiringFor: description: Filter by the roles the company is currently hiring for. items: type: string type: array companyJobPostingQuantity: additionalProperties: true description: Filter by how many roles the company has open. type: object companyKeywords: additionalProperties: true description: Filter by keywords found in company data. type: object companyLocationSearch: additionalProperties: true description: Filter by company headquarters location. type: object companyNaics: additionalProperties: true description: Filter by NAICS codes. type: object companyRevenue: additionalProperties: true description: Filter by revenue range. type: object companySics: additionalProperties: true description: Filter by SIC codes. type: object companyTechnology: additionalProperties: true description: Filter by technologies the company uses. type: object companyType: description: Filter by ownership type. enum: - Private - Public - Non Profit - Other type: string page: default: 1 description: Page number, one-based. Prospeo returns 25 results per page and charges one flat price per page. minimum: 1 type: integer preferLatencyUnderMs: description: '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.' minimum: 1 type: integer title: Company Search - Prospeo input type: object required: true responses: '200': content: application/json: schema: properties: costUsd: description: USD charged on the original run. On a replay this value is echoed for parity; the replay itself is free. type: number hint: description: '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.' type: string items: description: 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. type: integer jqError: description: Present only when a `jq` expression failed; `output` then carries the full unshaped result and this explains why the reshape did not apply. type: string output: anyOf: - additionalProperties: false properties: data: description: One page of matching records plus Prospeo's paging counters. oneOf: - type: 'null' - additionalProperties: false properties: companies: description: Matching companies with Prospeo's full firmographic record. items: properties: attributes: description: What Prospeo detects about how the company sells. properties: hasDemo: description: The website offers a demo. type: boolean hasDownloadable: description: The website offers a download. type: boolean hasFreeTrial: description: The website offers a free trial. type: boolean hasMobileApps: description: The company publishes mobile apps. type: boolean hasOnlineReviews: description: The company has online reviews. type: boolean hasPricing: description: The website publishes pricing. type: boolean isB2b: description: The company sells to businesses. type: boolean type: object companyId: description: Prospeo's own company identifier. Send it back as this SKU's companyId input. type: string crunchbaseUrl: description: Company Crunchbase profile URL. format: uri type: string description: description: Company description as the company writes it. type: string descriptionAi: description: Prospeo's own AI-written company summary. type: string descriptionSeo: description: Meta description from the company's website. type: string domain: description: Primary company domain. type: string emailTech: description: How the company's email is hosted. properties: domain: description: Domain the company's email addresses use. type: string mxProvider: description: Mail provider behind the domain's MX records. type: string type: object employeeCount: description: Employees Prospeo currently counts. type: integer employeeCountOnProspeo: description: Employees of this company that Prospeo holds a profile for. type: integer employeeRange: description: Employee headcount band, e.g. 10000+. type: string facebookUrl: description: Company Facebook page URL. format: uri type: string founded: description: Year the company was founded. type: integer funding: description: Funding history. properties: events: description: One entry per funding round. items: properties: amount: description: Amount raised in USD. type: number amountPrinted: description: Amount raised as a display string. type: string link: description: Source URL for the round. format: uri type: string raisedUtc: description: UTC epoch timestamp in seconds (Unix time) the round closed. Multiply by 1000 for a JS Date in milliseconds. type: number stage: description: Round stage, e.g. Series E-J. type: string type: object type: array latestStage: description: Most recent funding stage. type: string latestUtc: description: UTC epoch timestamp in seconds (Unix time) of the most recent round. Multiply by 1000 for a JS Date in milliseconds. type: number rounds: description: Number of funding rounds raised. type: integer totalRaised: description: Total capital raised, in USD. type: number totalRaisedPrinted: description: Total capital raised as a display string. type: string type: object image: description: Company logo URL. format: uri type: string industry: description: Company industry. type: string instagramUrl: description: Company Instagram profile URL. format: uri type: string jobPostings: description: Open roles Prospeo currently sees for the company. properties: activeCount: description: Open roles currently posted. type: integer activeTitles: description: Titles of the open roles. items: type: string type: array type: object keywords: description: Keywords Prospeo assigns the company. items: type: string type: array linkedinId: description: Company LinkedIn numeric id. type: string linkedinUrl: description: Company LinkedIn page URL. format: uri type: string location: description: Company headquarters. properties: city: description: City. type: string country: description: Country name. type: string countryCode: description: ISO 3166-1 alpha-2 country code. type: string rawAddress: description: Headquarters address as one display string. type: string state: description: State or region. type: string type: object naicsCodes: description: NAICS classification codes for the company. items: type: string type: array name: description: Company name. type: string otherWebsites: description: Other domains the company owns. items: type: string type: array phoneHq: description: Headquarters switchboard number. properties: country: description: Country the number belongs to. type: string countryCode: description: ISO 3166-1 alpha-2 code for that country. type: string international: description: Number in international format. type: string national: description: Number in national format. type: string phone: description: Phone number as Prospeo stores it. type: string type: object revenueRange: description: Annual revenue band in USD. properties: max: description: Upper bound in USD. type: number min: description: Lower bound in USD. type: number type: object revenueRangePrinted: description: Annual revenue band as a display string. type: string sicCodes: description: SIC classification codes for the company. items: type: string type: array technologies: description: Technologies Prospeo detects in the company's stack. items: type: string type: array twitterUrl: description: Company X (Twitter) profile URL. format: uri type: string type: description: Ownership type, e.g. Private, Public, Non Profit. type: string website: description: Company website URL. format: uri type: string youtubeUrl: description: Company YouTube channel URL. format: uri type: string required: - name type: object type: array currentPage: description: Page number this response holds, one-based. type: integer perPage: description: Results Prospeo returns per page. Prospeo fixes this at 25 and charges one flat price per page. type: integer totalCount: description: Results matching the filters across all pages. type: integer totalPages: description: Pages of results behind these filters. type: integer required: - companies type: object found: description: False when no record matched the filters. type: boolean required: - found - data title: Company Search - Prospeo output type: object - type: 'null' description: Normalized output, or null when the replay payload was not retained. provider: description: Always "AnyAPI". type: string replayed: description: True when this response replays the durable result of an earlier run without billing or upstream execution. type: boolean resultId: description: 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. type: string required: - output - provider - costUsd - items - replayed type: object description: Normalized result. headers: Idempotency-Replayed: description: Present only when the request carried an Idempotency-Key this gateway honored. "false" means the key was claimed and the run executed freshly; "true" means it replayed a prior identical run and was NOT charged again. Absent means either no key was sent or this gateway does not honor keys, so a retry could be charged twice. schema: enum: - 'false' - 'true' type: string PAYMENT-RESPONSE: description: Inline x402 payment receipt. schema: type: string Payment-Receipt: description: Inline mpp payment receipt. schema: type: string X-PAYMENT-RESPONSE: description: Inline x402 payment receipt. schema: type: string '400': content: application/json: schema: $ref: '#/components/schemas/Error' description: Input did not match the schema, or the upstream rejected the request. '401': content: application/json: schema: $ref: '#/components/schemas/Error' description: Missing or invalid API key. '402': content: application/json: schema: oneOf: - $ref: '#/components/schemas/PaymentRequiredError' - $ref: '#/components/schemas/TrialCapReached' application/problem+json: schema: properties: challengeId: minLength: 1 type: string status: const: 402 type: integer required: - status - challengeId type: object description: Insufficient wallet balance or spend cap, or an inline-payment challenge. Agent trials receive a trial_cap_reached continuation with a live RFC 8628 device authorization. headers: PAYMENT-REQUIRED: description: Inline x402 payment challenge. schema: type: string WWW-Authenticate: description: Inline mpp payment challenge. schema: type: string '404': content: application/json: schema: $ref: '#/components/schemas/Error' description: Unknown SKU, or the upstream had no matching resource. '409': content: application/json: schema: $ref: '#/components/schemas/Error' description: 'Idempotency collision. Codes: idempotency_in_progress means retry after the Retry-After delay; idempotency_conflict means use a new key for different request semantics; idempotency_needs_review means stop retrying and contact AnyAPI support with X-Anyapi-Request-Id.' '422': content: application/json: schema: $ref: '#/components/schemas/Error' description: The request was well formed but this API cannot serve the requested target site; the body's `alternatives` array lists the AnyAPI APIs that can. '429': content: application/json: schema: $ref: '#/components/schemas/Error' description: The upstream was rate limited; inspect `payment` when present before deciding whether to retry. '500': content: application/json: schema: $ref: '#/components/schemas/Error' description: An internal error prevented completion. Inspect payment when present before retrying. '502': content: application/json: schema: $ref: '#/components/schemas/Error' description: Every provider failed with a server/transport error, or inline payment settlement could not be confirmed; inspect `payment` when present before retrying. security: - bearerAuth: [] - apiKeyAuth: [] - {} summary: Company Search - Prospeo tags: - Company Search x-mint: href: /api-reference/company-search/prospeo x-payment-info: price: amount: '0.066000' currency: USD mode: fixed protocols: - x402: asset: '0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913' network: eip155:8453 payTo: '0x754BD2A6799e766B1E2b9f1Ae7fBdC0CeD96ef13' scheme: exact - mpp: asset: '0x20c000000000000000000000b9537d11c60e8b50' currency: USD intent: charge method: tempo network: tempo payTo: '0x754BD2A6799e766B1E2b9f1Ae7fBdC0CeD96ef13' rail: tempo scheme: exact rails: - headers: challenge: - PAYMENT-REQUIRED credential: - PAYMENT-SIGNATURE - X-PAYMENT receipt: - PAYMENT-RESPONSE - X-PAYMENT-RESPONSE pricing: amount: '0.066000' currency: USD minimumUsd: '0.001000' mode: fixed quoteBasis: floor protocol: asset: '0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913' network: eip155:8453 payTo: '0x754BD2A6799e766B1E2b9f1Ae7fBdC0CeD96ef13' scheme: exact rail: x402 settlement: onExecutionFailure: released onUnknownFinalization: indeterminate timing: after_execution - headers: challenge: - WWW-Authenticate credential: - Authorization receipt: - Payment-Receipt pricing: amount: '0.066000' currency: USD minimumUsd: null mode: fixed quoteBasis: funded_ceiling protocol: asset: '0x20c000000000000000000000b9537d11c60e8b50' currency: USD intent: charge method: tempo network: tempo payTo: '0x754BD2A6799e766B1E2b9f1Ae7fBdC0CeD96ef13' rail: tempo scheme: exact rail: mpp settlement: onExecutionFailure: charged_undelivered onVerificationError: indeterminate timing: before_execution /v1/run/company_search.quickenrich: post: description: 'Find companies by name, domain, industry, headcount, revenue, services, or location, and get back their site, LinkedIn, and contact details. Billed per company returned. **Price:** billed per result - \$7.20 per 1,000 results, capped at \$720.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 - QuickEnrich pricing and uptime - live USD price, lane routing, and measured 30-day uptime. Every Company_search endpoint.' operationId: company_search_quickenrich parameters: - description: 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. in: query name: fields required: false schema: type: string - description: 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. in: query name: max_items required: false schema: minimum: 0 type: integer - description: 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. in: query name: summary required: false schema: type: boolean - description: '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.' in: query name: jq required: false schema: type: string - description: Optional. The most you are willing to pay for this one request, in US dollars (for example 0.05). Any route that would charge more than this is not used, so a request only ever runs on something you can afford. If nothing is available at or below your amount, the request is refused before it runs, nothing is charged, and the message tells you the cheapest price per request so you can raise it. Leave it out to accept the normal price. in: query name: max_cost_usd required: false schema: type: string - description: 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. in: header name: Idempotency-Key required: false schema: maxLength: 255 minLength: 1 type: string requestBody: content: application/json: example: country: include: - US employeeCount: include: - 20 - 99 limit: 2 schema: additionalProperties: false anyOf: - required: - companyName - required: - companyDomain - required: - industry - required: - employeeCount - required: - revenue - required: - services - required: - city - required: - country - required: - homePageText - required: - linkedinBio example: country: include: - US employeeCount: include: - 20 - 99 limit: 2 properties: city: additionalProperties: false description: Filter on city name. properties: exclude: description: Reject any of these values. items: type: string maxItems: 50 type: array include: description: Match any of these values. items: type: string maxItems: 50 type: array type: object companyDomain: additionalProperties: false description: Filter on company website domain. Include only; exclude is rejected upstream. properties: include: description: Match any of these values. items: type: string maxItems: 50 type: array type: object companyName: additionalProperties: false description: Filter on company name. properties: exclude: description: Reject any of these values. items: type: string maxItems: 50 type: array include: description: Match any of these values. items: type: string maxItems: 50 type: array type: object country: additionalProperties: false description: Filter on ISO 3166-1 alpha-2 country code, e.g. "US". properties: exclude: description: Reject any of these values. items: type: string maxItems: 50 type: array include: description: Match any of these values. items: type: string maxItems: 50 type: array type: object employeeCount: additionalProperties: false description: Filter on headcount band. Note these bands differ from the employeeCount string returned on a result. properties: exclude: description: Reject any of these values. items: enum: - < 5 - 5 - 19 - 20 - 99 - 100 - 249 - 250 - 499 - 500 - 999 - 1000 - 4999 - 5000 - 9999 - '>10000' - Not Available type: string maxItems: 50 type: array include: description: Match any of these values. items: enum: - < 5 - 5 - 19 - 20 - 99 - 100 - 249 - 250 - 499 - 500 - 999 - 1000 - 4999 - 5000 - 9999 - '>10000' - Not Available type: string maxItems: 50 type: array type: object homePageText: additionalProperties: false description: Filter on words found in the company home page text. properties: exclude: description: Reject any of these values. items: type: string maxItems: 50 type: array include: description: Match any of these values. items: type: string maxItems: 50 type: array type: object includeFullText: description: Return the full home page text on each company instead of a snippet. type: boolean industry: additionalProperties: false description: Filter on industry label. Values must match the QuickEnrich industry vocabulary exactly, e.g. "IT Services and IT Consulting". properties: exclude: description: Reject any of these values. items: type: string maxItems: 50 type: array include: description: Match any of these values. items: type: string maxItems: 50 type: array type: object limit: default: 10 description: Maximum companies to return on this page. Every company returned is billed. maximum: 100 minimum: 1 type: integer linkedinBio: additionalProperties: false description: Filter on words found in the company LinkedIn bio. properties: exclude: description: Reject any of these values. items: type: string maxItems: 50 type: array include: description: Match any of these values. items: type: string maxItems: 50 type: array type: object page: default: 1 description: One-based result page. minimum: 1 type: integer preferLatencyUnderMs: description: '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.' minimum: 1 type: integer revenue: additionalProperties: false description: Filter on revenue band. properties: exclude: description: Reject any of these values. items: enum: - < 500k - 500k - 1 Million - 1 - 2.5 Million - 2.5 - 5 Million - 5 - 10 Million - 10 - 20 Million - 20 - 50 Million - 50 - 100 Million - 100 - 500 Million - 500 Million - 1 Billion - '>1 Billion' - Not Available type: string maxItems: 50 type: array include: description: Match any of these values. items: enum: - < 500k - 500k - 1 Million - 1 - 2.5 Million - 2.5 - 5 Million - 5 - 10 Million - 10 - 20 Million - 20 - 50 Million - 50 - 100 Million - 100 - 500 Million - 500 Million - 1 Billion - '>1 Billion' - Not Available type: string maxItems: 50 type: array type: object services: additionalProperties: false description: Filter on the services a company lists. properties: exclude: description: Reject any of these values. items: type: string maxItems: 50 type: array include: description: Match any of these values. items: type: string maxItems: 50 type: array type: object title: Company Search - QuickEnrich input type: object required: true responses: '200': content: application/json: schema: properties: costUsd: description: USD charged on the original run. On a replay this value is echoed for parity; the replay itself is free. type: number hint: description: '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.' type: string items: description: 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. type: integer jqError: description: Present only when a `jq` expression failed; `output` then carries the full unshaped result and this explains why the reshape did not apply. type: string output: anyOf: - additionalProperties: false properties: data: description: One page of results, or null when the request matched nothing. oneOf: - type: 'null' - additionalProperties: false properties: companies: description: Companies on this page. items: properties: city: description: City on the employer record. type: string country: description: ISO 3166-1 alpha-2 country code on the employer record. type: string domain: description: Company website domain. type: string email: description: Work email address. type: string emailDomain: description: Domain the work email resolves to. type: string employeeCount: description: Headcount band, e.g. "20 - 99". Upstream band vocabulary; "Not Available" means the band is unknown. type: string finalEmailDomain: description: Domain the company's email addresses finally resolve to after redirects. type: string homePageText: description: Home page text. A snippet unless includeFullText was set. type: string industry: description: Industry label. type: string linkedinBio: description: Company LinkedIn bio snippet. type: string linkedinUrl: description: Person's LinkedIn profile URL. type: string name: description: Company name. type: string phone: description: Direct business phone line held for the person. Mostly desk lines; read phoneType before treating it as a mobile. type: string region: description: State or region code on the employer record. type: string revenue: description: Revenue band, e.g. "1 - 2.5 Million". Upstream band vocabulary; "Not Available" means the band is unknown. type: string serviceCount: description: How many services the company lists. type: integer services: description: 'Services the company lists. Passed through untyped: every captured response so far has this empty, so the element shape is unverified.' required: - name type: object type: array hasMore: description: Whether the upstream reports further pages beyond this one. type: boolean page: description: One-based page this response covers. type: integer pageSize: description: Records per page upstream applied. type: integer total: description: Total records matching the request. type: integer totalPages: description: Total pages available. type: integer required: - companies - page - pageSize - total - totalPages - hasMore type: object found: description: False when the filters matched no companies. type: boolean required: - found - data title: Company Search - QuickEnrich output type: object - type: 'null' description: Normalized output, or null when the replay payload was not retained. provider: description: Always "AnyAPI". type: string replayed: description: True when this response replays the durable result of an earlier run without billing or upstream execution. type: boolean resultId: description: 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. type: string required: - output - provider - costUsd - items - replayed type: object description: Normalized result. headers: Idempotency-Replayed: description: Present only when the request carried an Idempotency-Key this gateway honored. "false" means the key was claimed and the run executed freshly; "true" means it replayed a prior identical run and was NOT charged again. Absent means either no key was sent or this gateway does not honor keys, so a retry could be charged twice. schema: enum: - 'false' - 'true' type: string PAYMENT-RESPONSE: description: Inline x402 payment receipt. schema: type: string Payment-Receipt: description: Inline mpp payment receipt. schema: type: string X-PAYMENT-RESPONSE: description: Inline x402 payment receipt. schema: type: string '400': content: application/json: schema: $ref: '#/components/schemas/Error' description: Input did not match the schema, or the upstream rejected the request. '401': content: application/json: schema: $ref: '#/components/schemas/Error' description: Missing or invalid API key. '402': content: application/json: schema: oneOf: - $ref: '#/components/schemas/PaymentRequiredError' - $ref: '#/components/schemas/TrialCapReached' application/problem+json: schema: properties: challengeId: minLength: 1 type: string status: const: 402 type: integer required: - status - challengeId type: object description: Insufficient wallet balance or spend cap, or an inline-payment challenge. Agent trials receive a trial_cap_reached continuation with a live RFC 8628 device authorization. headers: PAYMENT-REQUIRED: description: Inline x402 payment challenge. schema: type: string WWW-Authenticate: description: Inline mpp payment challenge. schema: type: string '404': content: application/json: schema: $ref: '#/components/schemas/Error' description: Unknown SKU, or the upstream had no matching resource. '409': content: application/json: schema: $ref: '#/components/schemas/Error' description: 'Idempotency collision. Codes: idempotency_in_progress means retry after the Retry-After delay; idempotency_conflict means use a new key for different request semantics; idempotency_needs_review means stop retrying and contact AnyAPI support with X-Anyapi-Request-Id.' '422': content: application/json: schema: $ref: '#/components/schemas/Error' description: The request was well formed but this API cannot serve the requested target site; the body's `alternatives` array lists the AnyAPI APIs that can. '429': content: application/json: schema: $ref: '#/components/schemas/Error' description: The upstream was rate limited; inspect `payment` when present before deciding whether to retry. '500': content: application/json: schema: $ref: '#/components/schemas/Error' description: An internal error prevented completion. Inspect payment when present before retrying. '502': content: application/json: schema: $ref: '#/components/schemas/Error' description: Every provider failed with a server/transport error, or inline payment settlement could not be confirmed; inspect `payment` when present before retrying. security: - bearerAuth: [] - apiKeyAuth: [] - {} summary: Company Search - QuickEnrich tags: - Company Search x-mint: href: /api-reference/company-search/quickenrich x-payment-info: price: currency: USD max: '0.720000' min: '0.000000' mode: dynamic protocols: - x402: asset: '0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913' network: eip155:8453 payTo: '0x754BD2A6799e766B1E2b9f1Ae7fBdC0CeD96ef13' scheme: exact - mpp: asset: '0x20c000000000000000000000b9537d11c60e8b50' currency: USD intent: charge method: tempo network: tempo payTo: '0x754BD2A6799e766B1E2b9f1Ae7fBdC0CeD96ef13' rail: tempo scheme: exact rails: - headers: challenge: - PAYMENT-REQUIRED credential: - PAYMENT-SIGNATURE - X-PAYMENT receipt: - PAYMENT-RESPONSE - X-PAYMENT-RESPONSE pricing: currency: USD max: '0.720000' min: '0.001000' minimumUsd: '0.001000' mode: dynamic quoteBasis: floor protocol: asset: '0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913' network: eip155:8453 payTo: '0x754BD2A6799e766B1E2b9f1Ae7fBdC0CeD96ef13' scheme: exact rail: x402 settlement: onExecutionFailure: released onUnknownFinalization: indeterminate timing: after_execution - headers: challenge: - WWW-Authenticate credential: - Authorization receipt: - Payment-Receipt pricing: currency: USD max: '0.720000' min: '0.000000' minimumUsd: null mode: dynamic quoteBasis: funded_ceiling protocol: asset: '0x20c000000000000000000000b9537d11c60e8b50' currency: USD intent: charge method: tempo network: tempo payTo: '0x754BD2A6799e766B1E2b9f1Ae7fBdC0CeD96ef13' rail: tempo scheme: exact rail: mpp settlement: onExecutionFailure: charged_undelivered onVerificationError: indeterminate timing: before_execution /v1/run/company_search.theirstack: post: description: '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.' operationId: company_search_theirstack parameters: - description: 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. in: query name: fields required: false schema: type: string - description: 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. in: query name: max_items required: false schema: minimum: 0 type: integer - description: 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. in: query name: summary required: false schema: type: boolean - description: '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.' in: query name: jq required: false schema: type: string - description: Optional. The most you are willing to pay for this one request, in US dollars (for example 0.05). Any route that would charge more than this is not used, so a request only ever runs on something you can afford. If nothing is available at or below your amount, the request is refused before it runs, nothing is charged, and the message tells you the cheapest price per request so you can raise it. Leave it out to accept the normal price. in: query name: max_cost_usd required: false schema: type: string - description: 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. in: header name: Idempotency-Key required: false schema: maxLength: 255 minLength: 1 type: string requestBody: content: application/json: example: companyDomainOr: - posthog.com limit: 1 schema: additionalProperties: false example: companyDomainOr: - posthog.com limit: 1 minProperties: 1 properties: companyCountryCodeNot: description: Return companies whose HQ country code is not any of the ones passed here, case sensitive. Pass ISO2 country codes. items: type: string type: array companyCountryCodeOr: description: Return companies whose HQ country code is any of the ones passed here, case sensitive. Pass ISO2 country codes. items: type: string type: array companyDescriptionPatternAccentInsensitive: description: Set to True to make company description searches accent insensitive. For example, "รก" will match "a" as well. type: boolean companyDescriptionPatternNot: description: Case-insensitive patterns to match in the company description. Will return companies that match any of the patterns. items: type: string type: array companyDescriptionPatternOr: description: Case-insensitive patterns to match in the company description. Will return companies that match any of the patterns. items: type: string type: array companyDomainNot: 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). items: type: string type: array companyDomainOr: 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. items: type: string type: array companyIdOr: 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. items: type: string type: array companyInvestorsOr: description: Investors of the company items: type: string type: array companyInvestorsPartialMatchOr: 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). items: type: string type: array companyKeywordSlugAnd: 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 items: type: string type: array companyKeywordSlugNot: 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 items: type: string type: array companyKeywordSlugOr: 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 items: type: string type: array companyLinkedinUrlExists: description: (Use `property_exists_or / property_exists_and` instead) Only return companies with a LinkedIn URL type: boolean companyLinkedinUrlOr: description: Return companies whose LinkedIn URL matches any of the slugs passed here. Can also pass full LinkedIn company URLs. items: type: string type: array companyListIdNot: description: Return companies that don't belong to any of the company lists passed here items: type: string type: array companyListIdOr: description: Return companies that belong to any of the company lists passed here items: type: string type: array companyLocationPatternOr: 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. items: type: string type: array companyNameCaseInsensitiveOr: description: Only return companies that match these names exactly, case-insensitively. items: type: string type: array companyNameNot: description: Only return companies that don't match these names exactly, case-sensitively. items: type: string type: array companyNameOr: 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. items: type: string type: array companyNamePartialMatchNot: 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. items: type: string type: array companyNamePartialMatchOr: 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. items: type: string type: array companyTagsOr: description: Return companies that match any of these keywords items: type: string type: array companyTechnologySlugAnd: 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. Deprecated: use company_keyword_slug_and instead.' items: type: string type: array companyTechnologySlugNot: 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. Deprecated: use company_keyword_slug_not instead.' items: type: string type: array companyTechnologySlugOr: 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. Deprecated: use company_keyword_slug_or instead.' items: type: string type: array companyType: description: Filter by company type. type: string expandTechnologySlugs: description: '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.' items: type: string type: array fundingStageOr: 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'']' items: type: string type: array includeTotalResults: 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.' type: boolean industryIdNot: description: Industry ids to exclude.You can use any of LinkedIn's Industry Codes V2 or GET /v0/catalog/industries items: type: string type: array industryIdOr: description: Industry codes. You can use any of LinkedIn's Industry Codes V2 or GET /v0/catalog/industries items: type: string type: array industryNot: 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 WARNING: Deprecated parameter. Use the industry_id_not field instead.' items: type: string type: array industryOr: 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 WARNING: Deprecated parameter. Use the industry_id_or field instead.' items: type: string type: array jobFilters: additionalProperties: true type: object keywordSlugAnd: 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 items: type: string type: array keywordSlugNot: 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 items: type: string type: array keywordSlugOr: 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 items: type: string type: array lastFundingRoundDateGte: description: 'Only return companies whose last funding round date is after or on this date. Format: ''YYYY-MM-DD''' type: string lastFundingRoundDateLte: description: 'Only return companies whose last funding round date is before or on this date. Format: ''YYYY-MM-DD''' type: string limit: default: 25 description: Rows to return on this page, up to TheirStack's maximum of 500. Every row returned is billed. maximum: 50 minimum: 1 type: integer maxEmployeeCount: description: Maximum number of employees in a company type: integer maxEmployeeCountOrNull: description: Maximum number of employees in a company. If we don't have company size information, we will return it as well. type: integer maxFundingUsd: description: Maximum company funding, in USD type: integer maxRevenueUsd: description: Maximum company revenue, in USD type: integer minEmployeeCount: description: Minimum number of employees in a company type: integer minEmployeeCountOrNull: description: Minimum number of employees in a company. If we don't have company size information, we will return it as well. type: integer minFundingUsd: description: Minimum company funding, in USD type: integer minRevenueUsd: description: Minimum company revenue, in USD type: integer offset: description: Number of results to skip. Required for offset-based pagination. type: integer onlyYcCompanies: description: Only return YC companies type: boolean orderBy: 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 items: type: string type: array page: description: Page number. Required when using page-based pagination. type: integer preferLatencyUnderMs: description: '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.' minimum: 1 type: integer propertyExistsAnd: description: Return 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. items: type: string type: array propertyExistsOr: description: 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. items: type: string type: array techFilters: additionalProperties: true description: Filter by technologies and buying intent topics detected for the company type: object technologySlugAnd: 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 items: type: string type: array technologySlugNot: 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 items: type: string type: array technologySlugOr: 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 items: type: string type: array title: Company Search - TheirStack input type: object required: true responses: '200': content: application/json: schema: properties: costUsd: description: USD charged on the original run. On a replay this value is echoed for parity; the replay itself is free. type: number hint: description: '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.' type: string items: description: 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. type: integer jqError: description: Present only when a `jq` expression failed; `output` then carries the full unshaped result and this explains why the reshape did not apply. type: string output: anyOf: - additionalProperties: false properties: data: description: The matching rows plus TheirStack's result counters. oneOf: - type: 'null' - additionalProperties: false properties: companies: description: Matching companies with TheirStack's firmographic record and the technology and keyword slugs found in their job posts. items: properties: alexaRanking: description: Alexa traffic rank for the company website. type: integer annualRevenueReadable: description: Estimated annual revenue as a display string, e.g. 4.2M. type: string annualRevenueUsd: description: Estimated annual revenue in USD. type: number apolloId: description: Apollo's identifier for the same company. type: string city: description: Headquarters city. type: string companyId: description: TheirStack's own company identifier. type: string companyKeywords: description: Keywords TheirStack assigns the company. items: type: string type: array companyTags: description: Tags TheirStack assigns the company. items: type: string type: array country: description: Headquarters country. type: string countryCode: description: ISO 3166-1 alpha-2 country code. type: string domain: description: Primary company domain. type: string employeeCount: description: Employees TheirStack currently counts. type: integer employeeCountRange: description: Employee headcount band, e.g. 201-500. type: string foundedYear: description: Year the company was founded. type: integer fundingStage: description: Most recent funding stage, e.g. series_b. type: string hasBlurredData: description: True when TheirStack redacted part of the record on this plan. type: boolean image: description: Company logo URL. format: uri type: string industry: description: Company industry. type: string industryId: description: TheirStack's identifier for that industry. type: string investors: description: Investors TheirStack records for the company. items: type: string type: array isRecruitingAgency: description: True when TheirStack classifies the company as a recruiting agency rather than a direct employer. type: boolean keywordSlugs: description: Keyword slugs found in the company's job posts. These are the values the keyword filters take. items: type: string type: array lastFundingRoundReadable: description: Most recent round size as a display string, e.g. $15M. type: string lastFundingRoundUtc: description: UTC epoch timestamp in seconds (Unix time) of the most recent funding round. Multiply by 1000 for a JS Date in milliseconds. type: number linkedinId: description: Company LinkedIn numeric id. type: string linkedinUrl: description: Company LinkedIn page URL. format: uri type: string longDescription: description: Company description as the company writes it. type: string name: description: Company name. type: string numBuyingIntentTopics: description: Distinct buying-intent topics detected in the company's job posts. type: integer numJobs: description: Job posts TheirStack holds for the company, all time. type: integer numJobsFound: description: Job posts of this company that matched your job filters, when you sent any. type: integer numJobsLast30Days: description: Job posts published in the last 30 days. type: integer numKeywords: description: Distinct keywords detected in the company's job posts. type: integer numTechnologies: description: Distinct technologies detected in the company's job posts. type: integer possibleDomains: description: Every domain TheirStack associates with the company. items: type: string type: array postalCode: description: Headquarters postal code. type: string publiclyTradedExchange: description: Exchange the company lists on. type: string publiclyTradedSymbol: description: Stock ticker, for listed companies. type: string seoDescription: description: Meta description from the company's website. type: string technologiesFound: description: The technologies from your technology filters that this company was matched on. Empty unless you filtered by technology. items: properties: category: description: Category the technology sits in. type: string categorySlug: description: Slug for that category. type: string confidence: description: 'How sure TheirStack is that the company uses it: high, medium or low.' type: string firstFoundUtc: description: UTC epoch timestamp in seconds (Unix time) the technology was first seen. Multiply by 1000 for a JS Date in milliseconds. type: number image: description: Technology logo URL. format: uri type: string jobs: description: Job posts mentioning the technology, all time. type: integer jobsLast180Days: description: Job posts mentioning it in the last 180 days. type: integer jobsLast30Days: description: Job posts mentioning it in the last 30 days. type: integer jobsLast7Days: description: Job posts mentioning it in the last 7 days. type: integer lastFoundUtc: description: UTC epoch timestamp in seconds (Unix time) the technology was last seen. Multiply by 1000 for a JS Date in milliseconds. type: number name: description: Technology name. type: string parentCategory: description: Parent category. type: string parentCategorySlug: description: Slug for that parent category. type: string rankWithinCategory: description: Rank among the company's technologies in the same category, 1 being the most used. type: integer relativeOccurrenceWithinCategory: description: Share of the company's mentions within this category that are of this technology, 0 to 1. type: number score: description: TheirStack's own relevance score for the match. type: number slug: description: Technology slug. This is the value the technology filters take. type: string thumbnail: description: Smaller technology logo URL. format: uri type: string type: description: Whether the row is a technology or a buying-intent keyword. type: string required: - name type: object type: array technologyNames: description: Human-readable names for those technologies. items: type: string type: array technologySlugs: description: Technology slugs found in the company's job posts. These are the values the technology filters take. items: type: string type: array totalFundingUsd: description: Total capital raised, in USD. type: number url: description: Company website URL. format: uri type: string urlSource: description: Where TheirStack sourced the company website URL. type: string ycBatch: description: Y Combinator batch, e.g. W20, for companies that went through it. type: string required: - name type: object type: array totalCompanies: description: Distinct companies matching the filters. TheirStack computes it only when you send includeTotalResults. type: integer totalResults: description: Rows matching the filters across all pages. TheirStack computes it only when you send includeTotalResults, and omits it otherwise. type: integer truncatedCompanies: description: Companies TheirStack withheld because the plan's result ceiling was reached. type: integer truncatedResults: description: Rows TheirStack withheld because the plan's result ceiling was reached. type: integer required: - companies type: object found: description: False when nothing matched the filters. type: boolean required: - found - data title: Company Search - TheirStack output type: object - type: 'null' description: Normalized output, or null when the replay payload was not retained. provider: description: Always "AnyAPI". type: string replayed: description: True when this response replays the durable result of an earlier run without billing or upstream execution. type: boolean resultId: description: 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. type: string required: - output - provider - costUsd - items - replayed type: object description: Normalized result. headers: Idempotency-Replayed: description: Present only when the request carried an Idempotency-Key this gateway honored. "false" means the key was claimed and the run executed freshly; "true" means it replayed a prior identical run and was NOT charged again. Absent means either no key was sent or this gateway does not honor keys, so a retry could be charged twice. schema: enum: - 'false' - 'true' type: string PAYMENT-RESPONSE: description: Inline x402 payment receipt. schema: type: string Payment-Receipt: description: Inline mpp payment receipt. schema: type: string X-PAYMENT-RESPONSE: description: Inline x402 payment receipt. schema: type: string '400': content: application/json: schema: $ref: '#/components/schemas/Error' description: Input did not match the schema, or the upstream rejected the request. '401': content: application/json: schema: $ref: '#/components/schemas/Error' description: Missing or invalid API key. '402': content: application/json: schema: oneOf: - $ref: '#/components/schemas/PaymentRequiredError' - $ref: '#/components/schemas/TrialCapReached' application/problem+json: schema: properties: challengeId: minLength: 1 type: string status: const: 402 type: integer required: - status - challengeId type: object description: Insufficient wallet balance or spend cap, or an inline-payment challenge. Agent trials receive a trial_cap_reached continuation with a live RFC 8628 device authorization. headers: PAYMENT-REQUIRED: description: Inline x402 payment challenge. schema: type: string WWW-Authenticate: description: Inline mpp payment challenge. schema: type: string '404': content: application/json: schema: $ref: '#/components/schemas/Error' description: Unknown SKU, or the upstream had no matching resource. '409': content: application/json: schema: $ref: '#/components/schemas/Error' description: 'Idempotency collision. Codes: idempotency_in_progress means retry after the Retry-After delay; idempotency_conflict means use a new key for different request semantics; idempotency_needs_review means stop retrying and contact AnyAPI support with X-Anyapi-Request-Id.' '422': content: application/json: schema: $ref: '#/components/schemas/Error' description: The request was well formed but this API cannot serve the requested target site; the body's `alternatives` array lists the AnyAPI APIs that can. '429': content: application/json: schema: $ref: '#/components/schemas/Error' description: The upstream was rate limited; inspect `payment` when present before deciding whether to retry. '500': content: application/json: schema: $ref: '#/components/schemas/Error' description: An internal error prevented completion. Inspect payment when present before retrying. '502': content: application/json: schema: $ref: '#/components/schemas/Error' description: Every provider failed with a server/transport error, or inline payment settlement could not be confirmed; inspect `payment` when present before retrying. security: - bearerAuth: [] - apiKeyAuth: [] - {} summary: Company Search - TheirStack tags: - Company Search x-mint: href: /api-reference/company-search/theirstack x-payment-info: price: currency: USD max: '9.960000' min: '0.000000' mode: dynamic protocols: - x402: asset: '0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913' network: eip155:8453 payTo: '0x754BD2A6799e766B1E2b9f1Ae7fBdC0CeD96ef13' scheme: exact - mpp: asset: '0x20c000000000000000000000b9537d11c60e8b50' currency: USD intent: charge method: tempo network: tempo payTo: '0x754BD2A6799e766B1E2b9f1Ae7fBdC0CeD96ef13' rail: tempo scheme: exact rails: - headers: challenge: - PAYMENT-REQUIRED credential: - PAYMENT-SIGNATURE - X-PAYMENT receipt: - PAYMENT-RESPONSE - X-PAYMENT-RESPONSE pricing: currency: USD max: '9.960000' min: '0.001000' minimumUsd: '0.001000' mode: dynamic quoteBasis: floor protocol: asset: '0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913' network: eip155:8453 payTo: '0x754BD2A6799e766B1E2b9f1Ae7fBdC0CeD96ef13' scheme: exact rail: x402 settlement: onExecutionFailure: released onUnknownFinalization: indeterminate timing: after_execution - headers: challenge: - WWW-Authenticate credential: - Authorization receipt: - Payment-Receipt pricing: currency: USD max: '9.960000' min: '0.000000' minimumUsd: null mode: dynamic quoteBasis: funded_ceiling protocol: asset: '0x20c000000000000000000000b9537d11c60e8b50' currency: USD intent: charge method: tempo network: tempo payTo: '0x754BD2A6799e766B1E2b9f1Ae7fBdC0CeD96ef13' rail: tempo scheme: exact rail: mpp settlement: onExecutionFailure: charged_undelivered onVerificationError: indeterminate timing: before_execution components: schemas: AgentUpgrade: properties: authorizationServer: format: uri type: string clientId: type: string device: $ref: '#/components/schemas/DeviceUpgrade' scope: type: string required: - authorizationServer - scope type: object Payment: properties: costUsd: description: Known USD payment amount for this request. minimum: 0 type: number rail: minLength: 1 type: string settlementState: enum: - charged_undelivered - indeterminate type: string required: - rail - settlementState - costUsd type: object Error: properties: code: description: Stable machine-readable error code when the endpoint defines one. type: string error: description: Customer-safe error message. type: string payment: $ref: '#/components/schemas/Payment' requestId: description: This run's AnyAPI request id, the same value as the X-Anyapi-Request-Id response header. Quote it to support. Absent on endpoints that do not execute a run. format: uuid type: string required: - error type: object PaymentRequiredError: allOf: - $ref: '#/components/schemas/Error' - properties: error: not: const: trial_cap_reached type: object DeviceUpgrade: properties: deviceCode: type: string expiresIn: minimum: 0 type: integer grantType: type: string interval: minimum: 1 type: integer tokenEndpoint: format: uri type: string userCode: type: string verificationUri: format: uri type: string verificationUriComplete: format: uri type: string required: - verificationUriComplete - verificationUri - userCode - deviceCode - tokenEndpoint - grantType - interval - expiresIn type: object TrialCapReached: properties: error: const: trial_cap_reached type: string message: description: Human-relayable continuation instructions, including an executable token poll. type: string upgrade: $ref: '#/components/schemas/AgentUpgrade' required: - error - message - upgrade type: object securitySchemes: apiKeyAuth: description: Your AnyAPI key. in: header name: X-API-Key type: apiKey x-default: YOUR_ANYAPI_KEY bearerAuth: description: Your AnyAPI key as a Bearer token. scheme: bearer type: http x-default: YOUR_ANYAPI_KEY