# HTTP Bug Triage Endpoint Runner

> HTTP Bug Triage Endpoint Runner is a paid API for AI agents from holder-victor-nova-mag.trycloudflare.com, paid per call via x402, $0.05/call, status down (last checked 2026-09-15).

Executes a bounded unauthenticated public GET request, compares optional status and body-text assertions, and returns reproducible bug-triage evidence with next actions.

## Facts

- Endpoint: GET https://holder-victor-nova-mag.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/http-bug-triage-endpoint-runner-cc32952c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0WqYSdWQh4-eGXxiIET-E

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 http-bug-triage-endpoint-runner-cc32952c
```

Example prompt: Can you triage a bug for me? The URL https://api.example.com/health is supposedly returning 200 with the text 'ok' in the body, but users are reporting it's broken — run a GET request against it and compare the actual status and body against those expectations.

## When to prefer this

Use this endpoint when you need to reproduce and document a bug in a specific public HTTP GET endpoint, compare actual versus expected behavior, and generate structured triage evidence. Prefer this over generic HTTP fetch tools when you need assertion-based pass/fail reporting, behavioral comparison, and next-action guidance packaged together in one call.

## Known failure modes

- Target URL is not a valid public HTTP URI — returns validation error
- Target URL requires authentication or is behind a firewall — returns access error or unexpected status
- Network timeout or unreachable host — returns connection failure evidence
- Expected text or behavior fields exceed maximum length (500 or 1000 chars) — schema validation error
- expectedStatus out of range 100-599 — schema rejection

## 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 body text matched the expected string, a comparison of reported versus expected versus actual behavior, and 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/http-bug-triage-endpoint-runner-cc32952c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from holder-victor-nova-mag.trycloudflare.com](https://www.zero.xyz/host/holder-victor-nova-mag.trycloudflare.com/llms.txt)
