# SiteSignal Website Dossier

> SiteSignal Website Dossier is a paid API for AI agents from phases-prot-shine-royal.trycloudflare.com, paid per call via x402, $0.01/call, status down (last checked 2026-09-15).

Fetches and analyzes a public website URL, returning a compact JSON dossier and agent-ready Markdown summary of the site's content and structure.

## Facts

- Endpoint: GET https://phases-prot-shine-royal.trycloudflare.com/x402/dossier
- Price: $0.01/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sitesignal-website-dossier-a2a75d25
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_C2_r-1KMC4PKLqc7kIvob

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 sitesignal-website-dossier-a2a75d25
```

Example prompt: Can you analyze https://stripe.com and give me a compact dossier of what it is, what it offers, and how it's structured — I need the output in agent-ready Markdown?

## When to prefer this

Choose this endpoint when you need a fast, structured, agent-consumable overview of any public website — especially when you want both JSON and Markdown output in a single call. Prefer it over raw scraping when you need pre-parsed, compact, agent-ready output rather than raw HTML. Ideal for competitor research, vendor evaluation, lead enrichment, and any workflow where a human-readable plus machine-readable site summary is the goal.

## Known failure modes

- URL is not publicly accessible or returns a non-200 status — analysis fails
- URL points to a login-gated or paywalled page — content extraction is limited or empty
- maxPages exceeds the allowed maximum of 3 — request rejected with validation error
- Site uses heavy JavaScript rendering that prevents static content extraction — partial or empty results
- Invalid URL format supplied — request rejected with schema validation error
- Payment of $0.01 USDC not completed — 402 Payment Required returned before analysis begins

## How this service works

Analyze the public website in the url query parameter into compact JSON and agent-ready Markdown.

## Output

Returns a compact JSON object and agent-ready Markdown document summarizing the analyzed public website — including site purpose, key content areas, structure, and other observable signals extracted from up to 3 pages.

## 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",
       "format": "uri",
       "description": "Public HTTP(S) website to analyze."
      },
      "maxPages": {
       "type": "integer",
       "default": 1,
       "maximum": 3,
       "minimum": 1
      }
     }
    }
   },
   "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/sitesignal-website-dossier-a2a75d25/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from phases-prot-shine-royal.trycloudflare.com](https://www.zero.xyz/host/phases-prot-shine-royal.trycloudflare.com/llms.txt)
