# TheirStack Technographics – Company Tech Stack Lookup

> TheirStack Technographics – Company Tech Stack Lookup is a paid API for AI agents from vaaya.ai, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-14).

Returns the full list of technologies a company uses, each with confidence level, job-post mention count, and first/last-seen dates, identified by domain, name, or LinkedIn URL.

## Facts

- Endpoint: POST https://vaaya.ai/api/run/theirstack/technographics
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/theirstack-technographics-company-tech-stack-lookup-ce048d91
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gQK80vCTf5lbL5_NOjkPS

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability theirstack-technographics-company-tech-stack-lookup-ce048d91 -d '<json body>'
```

Example prompt: Look up the tech stack for stripe.com — show me all technologies with at least medium confidence and tell me how many job posts mention each one.

## When to prefer this

Use this endpoint when you need a structured, confidence-scored inventory of a specific company's technology stack derived from job posting signals. Prefer company_domain as the identifier for unambiguous lookups. Choose this over general web search when you need machine-readable technographic output with temporal metadata (first/last seen) and job-post counts. It complements the sibling firmographics search endpoint, which finds companies; this one profiles a known company's tools.

## Known failure modes

- Company not found in TheirStack database — returns empty result at no charge
- Ambiguous company_name match — prefer company_domain for deterministic lookup
- Missing required identifier — must supply exactly one of company_domain, company_name, or company_linkedin_url
- Invalid LinkedIn URL format — must be a linkedin.com/company/… URL
- Rate limiting or upstream TheirStack API unavailability — transient 5xx error

## How this service works

TheirStack — List the technologies a company uses, each with confidence (low/medium/high), the number of job posts mentioning it, and first/last dates seen. Pass ONE of `company_domain` (preferred), `company_name`, `company_linkedin_url`; optional `keyword_category_slug_or`, `confidence_or`, `min_jobs`, `limit` (rows). Flat vendor cost per company lookup regardless of rows; free upstream when the company isn't found.

## Output

A flat list of technologies the target company uses, each row containing: technology name, confidence tier (low/medium/high), number of job postings that mention it, and the first and last dates that technology was observed. Returns an empty result (free) if the company is not found in TheirStack's database.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "POST"
     ]
    },
    "bodyType": {
     "type": "string",
     "enum": [
      "json",
      "form-data",
      "text"
     ]
    },
    "body": {
     "type": "object",
     "properties": {
      "company_domain": {
       "type": "string",
       "minLength": 2
      },
      "company_name": {
       "type": "string",
       "minLength": 1
      },
      "company_linkedin_url": {
       "type": "string",
       "minLength": 2
      },
      "company_id": {
       "type": "string",
       "minLength": 1
      },
      "keyword_slug_or": {
       "type": "array",
       "items": {
        "type": "string"
       }
      },
      "keyword_category_slug_or": {
       "type": "array",
       "items": {
        "type": "string"
       }
      },
      "confidence_or": {
       "type": "array",
       "items": {
        "type": "string",
        "enum": [
         "low",
         "medium",
         "high"
        ]
       }
      },
      "min_jobs": {
       "type": "integer",
       "minimum": 0
      },
      "last_date_found_gte": {
       "type": "string"
      },
      "limit": {
       "type": "integer",
       "minimum": 1,
       "maximum": 100
      },
      "page": {
       "type": "integer",
       "minimum": 0
      }
     },
     "additionalProperties": true,
     "$schema": "http://json-schema.org/draft-07/schema#"
    },
    "pathParams": {
     "type": "object"
    }
   },
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   },
   "required": [
    "type"
   ]
  }
 },
 "required": [
  "input"
 ]
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/theirstack-technographics-company-tech-stack-lookup-ce048d91/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from vaaya.ai](https://www.zero.xyz/host/vaaya.ai/llms.txt)
