# OnchainExpat x402 Bug Report Feedback API

> OnchainExpat x402 Bug Report Feedback API is a paid API for AI agents from x402.onchainexpat.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Submit a bug report or feedback about the OnchainExpat x402 API platform via a pay-per-request endpoint

## Facts

- Endpoint: POST https://x402.onchainexpat.com/api/x402-feedback/bug-report
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/onchainexpat-x402-bug-report-feedback-api-aeafbfa6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2f356pNmhGbz__XbhFHlq

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 onchainexpat-x402-bug-report-feedback-api-aeafbfa6 -d '<json body>'
```

Example prompt: Can you submit a bug report to OnchainExpat's x402 feedback system saying that the weather endpoint is returning a 500 error when querying for London?

## When to prefer this

Use this endpoint when you need to programmatically submit a bug report or feedback about the OnchainExpat x402 API ecosystem, particularly when automating quality reporting or integrating feedback loops into an agent workflow that consumes x402 APIs.

## Known failure modes

- Missing required bug description body returns 400 Bad Request
- Payment not provided or insufficient USDC results in 402 Payment Required
- Malformed JSON payload causes 422 Unprocessable Entity
- Service temporarily unavailable returns 503

## How this service works

Pay-per-request AI, crypto, proxy, and utility APIs using x402 protocol

## Output

A JSON confirmation that the bug report or feedback was received and stored by the OnchainExpat x402 platform, likely including a submission status or acknowledgement identifier.

## Example request

```json
{
 "title": "Weather endpoint returns 500 error for London queries",
 "pokemon": "charizard",
 "description": "The weather API endpoint is consistently returning HTTP 500 Internal Server Error when attempting to query weather data for London. This occurs regardless of request format or parameters. Expected behavior: endpoint should return valid weather data or appropriate error code. Steps to reproduce: 1) Call GET /api/weather?location=London 2) Observe 500 response. Impact: Users cannot retrieve weather information for UK locations."
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "title",
  "description"
 ],
 "properties": {
  "title": {
   "type": "string",
   "description": "Short bug summary, max 200 chars. Must differ from description. Example: 'Weather endpoint returns stale data'"
  },
  "category": {
   "type": "string",
   "description": "api, tools, crypto, proxy, docs, or other"
  },
  "severity": {
   "type": "string",
   "description": "low, medium, high, or critical"
  },
  "description": {
   "type": "string",
   "description": "Specific bug detail with steps to reproduce, max 2000 chars. Example: 'GET /api/x402-tools/weather/current returns data 24h old for city=Tokyo'. Placeholder text is rejected."
  },
  "endpoint_affected": {
   "type": "string",
   "description": "Which endpoint has the bug, e.g. /api/x402-tools/weather/current"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "id": {
   "type": "integer"
  },
  "title": {
   "type": "string"
  },
  "status": {
   "type": "string"
  },
  "message": {
   "type": "string"
  },
  "feedback_type": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/onchainexpat-x402-bug-report-feedback-api-aeafbfa6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.onchainexpat.com](https://www.zero.xyz/host/x402.onchainexpat.com/llms.txt)
