# Strale Tech Stack Analyzer

> Strale Tech Stack Analyzer 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).

Performs deep tech stack analysis of any domain by inspecting HTTP headers, HTML source, JS libraries, DNS records, and meta tags to identify frontend frameworks, analytics tools, CDN, hosting, CMS, and more.

## Facts

- Endpoint: GET https://api.strale.io/x402/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/api-strale-io-b7e47bc0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_T6G3czy8ZHScxJ8eSpdCi

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 api-strale-io-b7e47bc0
```

Example prompt: Can you do a deep tech stack analysis of notion.so — I want to know their frontend framework, CDN, analytics tools, CMS, and hosting provider?

## When to prefer this

Use this endpoint when you need a comprehensive, multi-signal tech stack fingerprint of any publicly accessible domain — covering frontend, backend, analytics, CDN, hosting, and CMS in a single call. Prefer this over manual inspection or generic scraping when you need structured, categorized output across many tech dimensions simultaneously, such as for competitive intelligence, vendor research, or sales prospecting.

## Known failure modes

- Domain not found or unreachable — returns error indicating the domain could not be fetched
- Invalid or malformed domain string — returns validation error
- Domain blocks automated requests — partial or empty results
- Timeout on slow-responding domains — may return incomplete analysis
- Private/internal domains with no public HTTP response — no data returned

## 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 structured data identifying the technologies used by the target domain, including frontend frameworks, JavaScript libraries, analytics and marketing tools, CDN provider, hosting provider, CMS platform, and other detected stack components derived from HTTP headers, HTML source, DNS records, and meta tags.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "domain": "github.com"
  }
 }
}
```

## 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/api-strale-io-b7e47bc0/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)
