# SiteSignal Website Dossier Analyzer

> SiteSignal Website Dossier Analyzer is a paid API for AI agents from trinity-throw-thursday-gravity.trycloudflare.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Analyzes a public website URL and returns compact JSON plus agent-ready Markdown summarizing its content and structure.

## Facts

- Endpoint: GET https://trinity-throw-thursday-gravity.trycloudflare.com/x402/dossier
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sitesignal-website-dossier-analyzer-d4b0162e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FXnyXDzS_UIiKRqcM4MMK

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-analyzer-d4b0162e
```

Example prompt: Analyze the website at https://stripe.com and give me a compact JSON dossier with an agent-ready Markdown summary — scan up to 2 pages.

## When to prefer this

Choose this endpoint when you need a quick, structured, agent-consumable summary of any public website — especially useful for competitive research, pre-meeting prep, or automated pipeline steps that need website context in JSON or Markdown. Prefer it over raw scraping tools when you want pre-formatted, analysis-ready output rather than raw HTML.

## Known failure modes

- URL is not publicly accessible or behind authentication — returns error
- Private or localhost URLs rejected by URI validation
- maxPages out of range (must be 1–3) — schema validation error
- Website returns non-HTML content (e.g. raw file download) — may produce incomplete dossier
- Rate limiting or timeout if the target site is slow to respond
- Cloudflare Tunnel downtime may cause 502/503 errors

## 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 website, including inferred purpose, key content, structure highlights, and other publicly observable metadata 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-analyzer-d4b0162e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from trinity-throw-thursday-gravity.trycloudflare.com](https://www.zero.xyz/host/trinity-throw-thursday-gravity.trycloudflare.com/llms.txt)
