# SiteSignal Quick Public Bug Reproduction and Triage

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

Performs a single bounded unauthenticated GET request against a public URL and returns reproducible bug-triage evidence including status, body-text assertions, and recommended next actions.

## Facts

- Endpoint: GET https://supported-rely-thee-portion.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-0c990129
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pjPKFfMI8_iWX2VwseS0r

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-0c990129
```

Example prompt: Can you reproduce the bug on https://example.com/checkout where users are reporting a 500 error instead of the expected 200, and check that the page body contains 'Order Complete' — then give me triage evidence and next steps?

## When to prefer this

Choose this endpoint when you need a quick, bounded, unauthenticated reproduction of a reported bug on a public URL with structured triage evidence — especially when you need to compare actual vs. expected HTTP status and/or body content and generate actionable next steps. Prefer this over general URL snapshot tools when the goal is specifically bug reproduction and triage rather than full content archiving or redirect chain analysis.

## Known failure modes

- Target URL is unreachable or times out — returns connectivity error evidence
- URL is not a valid URI — schema validation fails before request
- Unexpected redirect chain prevents direct GET — evidence reflects final resolved status
- Expected text not found but status matches — partial pass with mismatch detail
- Target requires authentication — unauthenticated GET returns 401/403, noted in triage output

## 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 reproducible bug-triage evidence including the actual HTTP status code received, whether the expected body text was found (case-sensitive or not), a comparison between reported and expected behavior, and a list of recommended next actions for resolving or escalating 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-0c990129/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from supported-rely-thee-portion.trycloudflare.com](https://www.zero.xyz/host/supported-rely-thee-portion.trycloudflare.com/llms.txt)
