x402basequality 0.62

Detect the technology stack of any domain via x402 micropayment ($0.01 USDC on Base).

Price
per_call
Protocol
x402
Verified
no

What it does

The `/domain/tech` endpoint on domain.hugen.tokyo is part of a Domain Intelligence API that provides seven domain analysis checks: WHOIS, DNS, SSL, tech stack detection, security headers, subdomain discovery, and redirect tracing. This specific endpoint accepts a domain name as a query parameter and returns detected technologies along with their categories. The probe's sample response showed results like Nginx (Web servers) and React (JavaScript frameworks), with a total technology count included.

The endpoint is live and uses the x402 payment protocol, requiring $0.01 USDC per call on the Base network. Payment can also be handled through alternative methods: an MCP gateway at mcp.hugen.tokyo, a free API key with $0.05 credit (no wallet needed), or the `x402-pay` Python SDK. The API is documented via an OpenAPI 3.1 spec and exposes a Swagger UI at `/docs`.

Response schemas for the tech endpoint are not fully specified in the OpenAPI document (the 200 response schema is empty), but the x402 challenge includes a sample showing a `technology_count` integer and a `technologies` array of objects with `name` and `categories` fields. The API runs all checks in parallel and requires no tool setup or result aggregation on the caller's side.

Capabilities

tech-stack-detectiondomain-analysisx402-paymentusdc-base-settlementget-requestjson-response

Use cases

  • Identifying the web server, CMS, and JavaScript frameworks used by a target domain
  • Competitive analysis by comparing technology stacks across multiple domains
  • Security auditing to detect outdated or vulnerable technologies on a website
  • Lead generation by filtering prospects based on their technology choices
  • Automated reconnaissance in penetration testing workflows

Fit

Best for

  • AI agents needing programmatic tech-stack lookups with micropayments
  • Security researchers performing automated domain reconnaissance
  • Sales/marketing teams building technology-based prospect lists

Not for

  • Bulk scanning of thousands of domains (per-call pricing adds up)
  • Detecting backend-only technologies not visible from HTTP responses
  • Offline or air-gapped environments without Base network access

Quick start

pip install x402-pay
python -c "
import x402_pay
r = x402_pay.get('https://domain.hugen.tokyo/domain/tech?domain=example.com')
print(r.json())
"

Example

Response

{
  "technologies": [
    {
      "name": "Nginx",
      "categories": [
        "Web servers"
      ]
    },
    {
      "name": "React",
      "categories": [
        "JavaScript frameworks"
      ]
    }
  ],
  "technology_count": 5
}

Endpoint

Transporthttp
Protocolx402
Pay to0x29322Ea7EcB34aA6164cb2ddeB9CE650902E4f60
CurrencyUSD COIN

Quality

0.62/ 1.00

The endpoint is live (402 challenge captured) with a valid OpenAPI 3.1 spec, but the 200 response schema is empty — the only response structure comes from the sample in the x402 challenge. No dedicated docs page, pricing page, or README exists beyond the Swagger UI. The sample response is truncated (shows 2 of 5 technologies).

Warnings

  • Response schema for 200 is empty in the OpenAPI spec; structure inferred from x402 challenge sample only
  • No dedicated documentation or pricing page found (root, /api, /pricing, /README all return 404)
  • Sample response in challenge appears truncated (2 of 5 technologies shown)

Citations

Provenance

Indexed fromx402_bazaar
Enriched2026-04-22 02:24:14Z · anthropic/claude-opus-4.6 · v2
First seen2026-04-21
Last seen2026-04-22

Agent access