# Website Tech Stack Detector

> Website Tech Stack Detector is a paid API for AI agents from intel.rallylive.ca, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-13).

Detects the CMS, frameworks, analytics tools, CDN, hosting, and other technologies used by a website's live homepage.

## Facts

- Endpoint: GET https://intel.rallylive.ca/tech-stack
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/website-tech-stack-detector-1e55d37e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_duOE94uDjChdI5ByGY_eL

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 website-tech-stack-detector-1e55d37e
```

Example prompt: What tech stack is shopify.com running — can you detect the CMS, JavaScript frameworks, analytics tools, and CDN they use?

## When to prefer this

Use this endpoint when you need to identify the technology stack of an external website from its live homepage without manual inspection. It is ideal for sales prospecting (qualifying leads by CMS), competitor research, and integration planning. Prefer this over generic web scraping endpoints when you specifically need structured tech-category output rather than raw HTML or text.

## Known failure modes

- Website is unreachable or returns non-200 status — no tech stack returned
- Heavily obfuscated or minified code may prevent framework detection
- Sites behind Cloudflare bot protection may block the crawl
- Single-page apps that require JavaScript rendering may yield incomplete results
- Private or intranet sites cannot be accessed

## How this service works

Website technology detection: CMS and frameworks (WordPress, Shopify, Next.js, React, Webflow...), analytics and tag managers, hosting/server and CDN hints, generator meta tag, from the live homepage. Tech stack lookup for sales prospecting, competitor research and integration planning. $0.01 per site.

## Output

A structured JSON response containing detected technologies grouped by category: CMS (e.g. WordPress, Shopify, Webflow), JavaScript frameworks (e.g. React, Next.js, Vue), analytics and tag managers (e.g. Google Analytics, GTM), CDN and hosting hints, and generator meta tag values — all extracted from the live homepage.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/website-tech-stack-detector-1e55d37e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from intel.rallylive.ca](https://www.zero.xyz/host/intel.rallylive.ca/llms.txt)
