# SiteSignal Quick Public Bug Reproduction and Triage

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

Executes a bounded unauthenticated GET request against a public URL, compares observed status and body text against expected values, and returns reproducible bug-triage evidence with next-action recommendations.

## Facts

- Endpoint: GET https://obtain-incentive-exceptions-speakers.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-2929a352
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UOf5gi-V3qsu-ReP2wgCU

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-2929a352
```

Example prompt: Can you triage this bug for me — https://example.com/api/health is reportedly returning a 500 error instead of a 200, and the response body should contain the text 'status: ok'. I need reproducible evidence and suggested next steps.

## When to prefer this

Choose this endpoint when you need a single, bounded, reproducible check of a public URL's HTTP status and/or body content for bug-triage purposes — especially when you want structured evidence (actual vs expected comparison) and next-action guidance rather than just a raw HTTP response. Prefer it over generic HTTP fetch tools when the goal is QA evidence gathering for a bug report.

## Known failure modes

- Target URL is unreachable or times out — returns network error evidence
- Target URL requires authentication — returns 401/403 status as part of triage evidence
- expectedStatus or expectedText assertions cannot be evaluated if response body is binary or very large
- Invalid URL format in the url parameter causes a validation error before the request is made
- Cloudflare tunnel hosting the service may be intermittently unavailable

## 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-insensitive by default), a comparison of reported vs expected vs actual behavior, and recommended next actions for the engineering team.

## 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-2929a352/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from obtain-incentive-exceptions-speakers.trycloudflare.com](https://www.zero.xyz/host/obtain-incentive-exceptions-speakers.trycloudflare.com/llms.txt)
