# klymax402 Tech Stack Detection API

> klymax402 Tech Stack Detection API is a paid API for AI agents from klymax402.com, paid per call via x402, $0.012/call, status unknown (last checked 2026-09-14).

Scans a URL and returns a summary of the technologies and frameworks detected on that website

## Facts

- Endpoint: GET https://klymax402.com/api/tech-enrichment/api/detect
- Price: $0.012/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/klymax402-tech-stack-detection-api-4b073c7d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_W5Lo4OSp5lm7bwZWK7T0h

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 klymax402-tech-stack-detection-api-4b073c7d
```

Example prompt: Can you scan https://shopify.com and tell me what technologies and frameworks it's built with?

## When to prefer this

Choose this endpoint when you need a quick, pay-per-call technology fingerprint of any public website without managing API keys or subscriptions. It is well-suited for competitive research, sales intelligence, or developer audits where you need to identify frameworks, CMS platforms, analytics tools, and hosting providers from a single URL scan.

## Known failure modes

- Invalid or unreachable URL returns an error or empty technologies array
- Private/intranet URLs are not accessible and return no results
- Rate-limited or bot-protected sites may yield incomplete detection
- Malformed URL input (missing scheme) may cause a parsing error
- Payment failure results in HTTP 402 before the scan is performed

## How this service works

One MCP endpoint gives your AI agent access to 100 APIs -- crypto, DeFi, web, AI, finance and utilities. No API keys, USDC on Base from $0.003/call.

## Output

A JSON object containing the scanned URL, a summary object describing detected technologies (frameworks, CMS, analytics, CDN, hosting, etc.), and the time taken to perform the scan in milliseconds.

## 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",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "description": "URL to scan (e.g. https://example.com or example.com)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "url": "example",
  "summary": {},
  "scan_time_ms": 1,
  "technologies": []
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/klymax402-tech-stack-detection-api-4b073c7d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from klymax402.com](https://www.zero.xyz/host/klymax402.com/llms.txt)
