# URLTrust Tech Stack Profiler

> URLTrust Tech Stack Profiler is a paid API for AI agents from urltrust.openverbs.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Given a bare domain name, returns the full technology stack it uses — CDN, analytics, frameworks, CMS, payment processors, hosting, and security tools — grouped by category, plus domain rank, country, last-seen date, and social links.

## Facts

- Endpoint: POST https://urltrust.openverbs.com/v1/techstack
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/urltrust-tech-stack-profiler-d02976f4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_u9sOs1e7VHLutQeDHXkwW

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 urltrust-tech-stack-profiler-d02976f4 -d '<json body>'
```

Example prompt: Can you look up the technology stack for stripe.com — I want to know what CDN, analytics, CMS, and payment tools they're using, plus their domain rank and country?

## When to prefer this

Use this endpoint when you need a comprehensive, categorized technology fingerprint of a domain — not just a trust score or phishing check. Prefer this over the sibling trust-scoring endpoints when the goal is competitive intelligence, vendor due diligence, lead enrichment, or understanding what third-party services a site depends on. It is especially useful when you need structured, category-grouped tech data (CDN, CMS, analytics, etc.) rather than a single risk signal.

## Known failure modes

- Domain not found in database returns found=false with no technology data
- Invalid or malformed domain (e.g. includes scheme or path) may produce unexpected results
- Domain with very low traffic or newly registered may have no rank or tech data
- Rate limiting or payment failure results in 402 response
- Stale data if domain recently changed its tech stack (last-seen date indicates freshness)

## How this service works

Detect the technology stack a website runs on. Given a domain, returns the software and services it uses (CDN, analytics, frameworks, CMS, payment, hosting, security) grouped by category, plus a domain rank, last-seen date, country and public social links. Unknown domain returns found=false.

## Output

Returns a structured profile of the domain including a 'found' boolean, grouped technology categories (CDN, analytics, CMS, frameworks, payment, hosting, security), global domain rank, country of origin, last-seen date, and any publicly available social media links. If the domain is unknown, returns found=false with no tech data.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "domain"
     ],
     "properties": {
      "domain": {
       "type": "string",
       "maxLength": 253,
       "minLength": 3,
       "description": "Bare domain to profile, e.g. stripe.com (scheme and path are stripped)."
      }
     },
     "additionalProperties": false
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/urltrust-tech-stack-profiler-d02976f4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from urltrust.openverbs.com](https://www.zero.xyz/host/urltrust.openverbs.com/llms.txt)
