# Strale Company Tech Stack Lookup

> Strale Company Tech Stack Lookup is a paid API for AI agents from api.strale.io, paid per call via x402, $0.324/call, status unknown (last checked 2026-09-13).

Returns the detected technology stack (tools, frameworks, platforms, services) used by a company based on its domain name.

## Facts

- Endpoint: GET https://api.strale.io/x402/v2/company-tech-stack
- Price: $0.324/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/strale-company-tech-stack-lookup-c2b54c42
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NtHBmgb3zSqCD6TZddc_z

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 strale-company-tech-stack-lookup-c2b54c42
```

Example prompt: What tech stack does shopify.com use? I want to know what frameworks, CRM, analytics, payment, and infrastructure tools they're running.

## When to prefer this

Choose this endpoint when you need to identify the technology footprint of a specific company by domain — especially for competitive intelligence, B2B sales prospecting, or technical due diligence. It is well-suited for agents that need structured, audit-traceable company tech data across a wide range of technology categories without scraping or browser automation. Prefer this over general web scrapers when you need categorized, normalized tech stack output with a verifiable audit trail.

## Known failure modes

- Domain not found or unreachable — no stack data returned
- Domain exists but uses obfuscation or server-side rendering, limiting detection accuracy
- Invalid or malformed domain input returns a validation error
- Private/intranet domains return empty or minimal results
- Rate limiting or payment failure if USDC balance is insufficient

## How this service works

Deep tech stack analysis of any domain. Analyzes HTTP headers, HTML source, JS libraries, DNS records, meta tags. Returns frontend, analytics, CDN, hosting, CMS, and more.

## Output

Returns a structured breakdown of detected technologies used by the company at the specified domain, including categories such as frontend frameworks, backend languages, CMS, CDN, analytics, advertising, CRM, payment processors, and hosting infrastructure. May include version info and confidence signals where available. Each call includes a cryptographic audit record with chain hashing.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "domain"
 ],
 "properties": {
  "domain": {
   "type": "string",
   "description": "Domain to analyze (e.g. stripe.com)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "cdn": {
  "type": "string"
 },
 "analytics": {
  "type": "array"
 },
 "hosting_provider": {
  "type": "string"
 },
 "frontend_framework": {
  "type": "string"
 },
 "detected_technologies": {
  "type": "array"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/strale-company-tech-stack-lookup-c2b54c42/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.strale.io](https://www.zero.xyz/host/api.strale.io/llms.txt)
