# SiteSignal Quick Public Bug Reproduction and Triage

> SiteSignal Quick Public Bug Reproduction and Triage is a paid API for AI agents from phases-prot-shine-royal.trycloudflare.com, paid per call via x402, $0.05/call, status down (last checked 2026-09-15).

Fetches a public URL via GET, checks status code and body text against expected values, and returns reproducible bug-triage evidence with next-action recommendations.

## Facts

- Endpoint: GET https://phases-prot-shine-royal.trycloudflare.com/x402/bug-triage
- Price: $0.05/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sitesignal-quick-public-bug-reproduction-and-triage-b9a68122
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GNnTc84D9Xg2v9mGL6xaT

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-quick-public-bug-reproduction-and-triage-b9a68122
```

Example prompt: Can you reproduce this bug for me — fetch https://api.example.com/status, it should return a 200 with the text 'healthy' in the body, but users are reporting it comes back as a 503. Tell me what you actually get and what next steps I should take.

## When to prefer this

Choose this endpoint when you need a quick, reproducible, unauthenticated snapshot of whether a public URL behaves as expected — particularly for bug triage workflows where you want to confirm or deny a reported issue with evidence. It is purpose-built for single-shot GET requests with assertion comparisons, unlike general HTTP monitoring tools or full site crawlers. Prefer it over generic HTTP check tools when you need structured triage output with next-action guidance rather than raw response data.

## Known failure modes

- Target URL is unreachable or times out — returns connection error with no assertion results
- URL returns unexpected redirect chain preventing GET from completing
- Expected text not found due to case mismatch when caseSensitive flag not set correctly
- Service itself unavailable (Cloudflare tunnel down) — returns gateway error
- Invalid URL format provided — returns schema validation error
- Status code outside valid range 100-599 — rejected at input validation

## How this service works

Run one bounded unauthenticated public GET, compare optional status and body-text assertions, and return reproducible bug-triage evidence and next actions.

## Output

Returns structured bug-triage evidence including the actual HTTP status code received, whether the body text assertion passed or failed, a comparison of reported vs expected behavior, and concrete next-action recommendations to help diagnose or escalate the issue.

## 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",
      "reportedBehavior"
     ],
     "properties": {
      "url": {
       "type": "string",
       "format": "uri"
      },
      "expectedText": {
       "type": "string",
       "maxLength": 500
      },
      "caseSensitive": {
       "type": "boolean",
       "default": false
      },
      "expectedStatus": {
       "type": "integer",
       "default": 200,
       "maximum": 599,
       "minimum": 100
      },
      "expectedBehavior": {
       "type": "string",
       "maxLength": 1000
      },
      "reportedBehavior": {
       "type": "string",
       "maxLength": 1000
      }
     }
    }
   },
   "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-quick-public-bug-reproduction-and-triage-b9a68122/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)
