# Klymax Tech Enrichment - Website Technology Detector

> Klymax Tech Enrichment - Website Technology Detector is a paid API for AI agents from tech-enrichment.api.klymax402.com, paid per call via x402, $0.012/call, status unknown (last checked 2026-09-14).

Detects and returns the technologies used on a given website URL

## Facts

- Endpoint: GET https://tech-enrichment.api.klymax402.com/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/klymax-tech-enrichment-website-technology-detector-a1d11fb0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_l-sDAl9rXfm0xVbQbgQ4a

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 klymax-tech-enrichment-website-technology-detector-a1d11fb0
```

Example prompt: Can you scan stripe.com and tell me what technologies, frameworks, and third-party tools it's using?

## When to prefer this

Use this endpoint when you need to identify or audit the technology stack of any public website — ideal for competitive intelligence, lead enrichment, due diligence, or developer research. Prefer this over manual inspection or generic web scrapers when you need structured tech detection results quickly and cheaply at $0.005 per call.

## Known failure modes

- Invalid or unreachable URL returns an error
- Private or localhost URLs may be rejected
- Heavily obfuscated or JavaScript-rendered sites may yield incomplete results
- Rate limiting or payment failure returns 402 or 429 status
- Malformed URL input causes validation error

## How this service works

Detect technologies used on a website (POST variant)

## Output

Returns a structured breakdown of the technologies detected on the target website, potentially including CMS platforms, JavaScript frameworks, analytics tools, CDN providers, server software, and other identified tech stack components.

## 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"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/klymax-tech-enrichment-website-technology-detector-a1d11fb0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from tech-enrichment.api.klymax402.com](https://www.zero.xyz/host/tech-enrichment.api.klymax402.com/llms.txt)
