# Boon Protocol Route Reviews

> Boon Protocol Route Reviews is a paid API for AI agents from api.boonprotocol.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Retrieves self-reported, receipt-verified, and gratuity-backed reviews for a specific x402 route endpoint

## Facts

- Endpoint: GET https://api.boonprotocol.com/api/v1/x402/routes/:routeId/reviews
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/boon-protocol-route-reviews-debb61ee
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0UU3lbirUxkwPS6ig3QGZ

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 boon-protocol-route-reviews-debb61ee
```

Example prompt: Pull up the receipt-verified Boon Protocol reviews for x402 route 0x3a1f2b4c5d6e7f8a9b0c1d2e3f4a5b6c7d8e9f0a1b2c3d4e5f6a7b8c9d0e1f2a — show me the first 25.

## When to prefer this

Use this endpoint when you need community-sourced, verified reviews for a specific x402 API route — particularly when you want receipt-backed (i.e., from actual paying users) feedback rather than unverified opinions. Ideal for vetting an API before integrating it, or for displaying trust signals about a Boon Protocol-listed endpoint.

## Known failure modes

- Invalid routeId format (must match ^0x[0-9a-fA-F]{64}$) returns validation error
- RouteId not found returns 404 or empty result set
- limit out of range (must be 1-100) returns validation error
- offset below 0 returns validation error
- Payment of $0.01 USDC not included or failed returns 402 Payment Required
- Network or service unavailability returns 5xx error

## How this service works

Boon self-reported, receipt-verified, and gratuity-backed endpoint reviews

## Output

A paginated list of reviews for the specified x402 route, including self-reported feedback, receipt-verified assessments, and gratuity-backed ratings submitted by users who have actually paid for and used the endpoint.

## 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"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "routeId"
     ],
     "properties": {
      "routeId": {
       "type": "string",
       "pattern": "^0x[0-9a-fA-F]{64}$",
       "description": "The routed x402 endpoint ID."
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "limit": {
       "type": "integer",
       "default": 25,
       "maximum": 100,
       "minimum": 1
      },
      "offset": {
       "type": "integer",
       "default": 0,
       "minimum": 0
      }
     }
    }
   },
   "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/boon-protocol-route-reviews-debb61ee/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.boonprotocol.com](https://www.zero.xyz/host/api.boonprotocol.com/llms.txt)
