x402 List

x402 Protocol Service Directory

Second Opinion

AI

Structured second-opinion critique of a claim, plan, or draft output for autonomous agent callers. Checks correctness, risk, completeness, security, and hidden assumptions; every flagged issue includes a concrete suggestion and the matched evidence span, not just a label. Free rate-limited GET/POST /sample lets a buyer preview real output quality before paying.

Pay from $0.19 per request in USDC on Base, settled onchain via the x402 protocol, no signup, no API key needed.

listed 2026-07-25 · no on-chain settlement recorded yet

BASE URL https://secondopinionapi.com WEBSITE https://secondopinionapi.com/llms.txt ENDPOINTS 1 NETWORK Base ASSET USDC MEMBER SINCE 2026-07-25 MONITORED SINCE 2026-07-25

ASSESSMENT

updated 3h ago

Evidence-backed signals, not a single score. Click any chip for the proof. Measured values stay read-only; unknown is honest.

reliability 55.6%
uptime 24h
-
uptime 7d
-
uptime 30d
-
uptime 90d
-
response p95
1143ms
avg response
1143ms
total checks
1
compliance A (11/11)

11 of 11 x402 conformance checks pass. Full checklist below.

jump to compliance checklist

price $0.01 (p53 in AI)
price (min)
$0.01
category percentile (min)
p53 in AI
endpoints / prices
1 / 1
model
flat
stability
100%
risk clean

No deterministic risk flag. Risk fires only on an exact blocklist match, or a reserved-brand name with a mismatched verified payTo. Never from low uptime, a high price, or a model guess.

domain age
0d
registrar
Cloudflare, Inc.
hosting
custom
domain created
2026-07-25

Identity facts, not a risk score.

traction $0 30d · 0 buyers
volume 30d
$0
buyers 30d
0
settlements 30d
0
first settlement
---
last settlement
---
top buyer share
-
trend 7d vs 30d
-
networks
eip155:8453
volume all-time
$0
settlements all-time
0
median settlement 30d
$0
max settlement 30d
$0
settled via
-

Conservative undercount: only USDC settlements via facilitators we measure are counted. A measured floor, not an estimate.

Top buyer share is a concentration signal, not part of the ranking score.

CHANGES

1 in 30d

Payout, price, and schema changes detected on this service's x402 wire. A payout rotation at an unchanged price shows up here even when nothing else moves. Full feed at /changes.

changes price changed 2h ago (1 in 30d)

price changed · 2h ago

POST /critique · eip155:8453 · USDC: 10000190000

Amounts are on-wire atomic units in the named asset.

see all changes for this service

WHAT IT DOES

ai-derived

Provides AI-powered critique services

category
ai-critique
in
body
aicritiquefeedback

AI-generated summary. The measured data is never altered by it.

ENDPOINTS

Service endpoints with HTTP method, path, description, pricing, and network
METHOD PATH DESCRIPTION PRICE NETWORK ASSET
POST /critique $0.19 Base USDC
1 endpoints

REQUEST / RESPONSE EXAMPLE

An unpaid request to POST /critique returns HTTP 402 with the payment terms. Settle onchain via your facilitator, then retry with the X-Payment header.

// request
curl -i -X POST 'https://secondopinionapi.com/critique'
// 402 response (captured by monitor) · 1 payload · click to expand
[
  {
    "error": "Payment required",
    "accepts": [
      {
        "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "extra": {
          "name": "USD Coin",
          "version": "2"
        },
        "payTo": "0x0b9B8a32AD1E821af6E470A4De97ba7188A130a4",
        "amount": "190000",
        "scheme": "exact",
        "network": "eip155:8453",
        "maxTimeoutSeconds": 300
      }
    ],
    "resource": {
      "url": "https://secondopinionapi.com/critique",
      "tags": [
        "critique",
        "ai-agents",
        "review"
      ],
      "mimeType": "application/json",
      "description": "Structured second-opinion critique of a claim, plan, or draft output.",
      "serviceName": "Second Opinion"
    },
    "extensions": {
      "bazaar": {
        "info": {
          "input": {
            "body": {
              "lenses": [
                "correctness",
                "risk",
                "completeness"
              ],
              "content": "Our new auth flow is 100% secure and will never be breached.",
              "context": "reviewing a security claim before publishing it"
            },
            "type": "http",
            "method": "POST",
            "bodyType": "json"
          },
          "output": {
            "type": "json",
            "example": {
              "engine": "heuristic-v2",
              "issues": [
                {
                  "lens": "correctness",
                  "note": "Absolute claim (100%, never) with no evidence or source anywhere in the text.",
                  "evidence": "Our new auth flow is 100% secure and will never…",
                  "question": "What evidence supports \"100%\"?",
                  "severity": "medium",
                  "suggestion": "Either soften to a bounded claim or attach the measurement / source that justifies it."
                }
              ],
              "summary": "1 issue(s) found (0 high, 1 medium, 0 low). Most severe — correctness: Absolute claim (100%, never) with no evidence or source anywhere in the text.",
              "verdict": "flagged",
              "questions": [
                "What evidence supports \"100%\"?"
              ],
              "confidence": 0.55,
              "lenses_applied": [
                "correctness",
                "risk",
                "completeness"
              ],
              "severity_counts": {
                "low": 0,
                "high": 0,
                "medium": 1
              }
            }
          }
        },
        "schema": {
          "type": "object",
          "$schema": "https://json-schema.org/draft/2020-12/schema",
          "required": [
            "input"
          ],
          "properties": {
            "input": {
              "type": "object",
              "required": [
                "type",
                "method",
                "bodyType",
                "body"
              ],
              "properties": {
                "body": {
                  "required": [
                    "content"
                  ],
                  "properties": {
                    "lenses": {
                      "type": "array",
                      "items": {
                        "enum": [
                          "correctness",
                          "risk",
                          "completeness",
                          "security",
                          "assumptions"
                        ],
                        "type": "string"
                      },
                      "description": "Which critique lenses to apply. Defaults to correctness, risk and completeness; security and assumptions are opt-in."
                    },
                    "content": {
                      "type": "string",
                      "description": "The claim, plan, or draft text to critique."
                    },
                    "context": {
                      "type": "string",
                      "description": "Optional context about what this content is for."
                    }
                  }
                },
                "type": {
                  "type": "string",
                  "const": "http"
                },
                "method": {
                  "enum": [
                    "POST",
                    "PUT",
                    "PATCH"
                  ],
                  "type": "string"
                },
                "bodyType": {
                  "enum": [
                    "json",
                    "form-data",
                    "text"
                  ],
                  "type": "string"
                }
              },
              "additionalProperties": false
            },
            "output": {
              "type": "object",
              "required": [
                "type"
              ],
              "properties": {
                "type": {
                  "type": "string"
                },
                "example": {
                  "type": "object",
                  "properties": {
                    "engine": {
                      "type": "string"
                    },
                    "issues": {
                      "type": "array",
                      "description": "Each issue has lens, severity (high/medium/low), note, suggestion, and optionally evidence and question."
                    },
                    "summary": {
                      "type": "string"
                    },
                    "verdict": {
                      "enum": [
                        "pass",
                        "flagged"
                      ],
                      "type": "string"
                    },
                    "questions": {
                      "type": "array",
                      "description": "Specific things the caller should resolve first."
                    },
                    "confidence": {
                      "type": "number",
                      "description": "0-1 confidence that the content is safe to act on exactly as written."
                    },
                    "lenses_applied": {
                      "type": "array"
                    },
                    "severity_counts": {
                      "type": "object"
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "x402Version": 2
  }
]

OVER TIME

All charts share the 7d window selected here. Every series is also served as JSON at /api/v1/services/second-opinion/price, /scores, /volume and /buyers. On-chain volume and distinct buyers are measured over the service's settlement address and are a conservative undercount (only settlements that reach a measured facilitator are counted). The on-chain series roll up hourly, so the latest day can be up to about an hour behind; distinct buyers are counted per payout address, so a service that settles to more than one address is an upper bound.

UPTIME
07-25 · uptime 55.6% · 986ms avg07-25 · uptime 55.6% · 986ms avg07-2507-25
7d UPTIME 55.6%
RESPONSE TIME
07-25 · 986ms avg07-25 · 986ms avg07-2507-25
AVG RESP 986ms
PRICE (captured 402, USD)
building price history ($0.19)
SUB-SCORES (uptime + x402 compliance)
building assessment history (1 day so far)
VOLUME (on-chain settlement, USD)
no on-chain volume yet
DISTINCT BUYERS
no distinct buyers yet

COMPLIANCE

11/11 checks pass · grade A
  • 402 payload captured
  • accepts[] array present
  • payTo address recoverable
  • payTo at accepts[0].payTo (conformant shape)
  • payTo is a valid on-chain address
  • atomic price declared
  • atomic price in a sane range
  • asset (token) address declared
  • network resolves to CAIP-2
  • payment scheme declared
  • served over HTTPS

SITE PILLARS

  • homepage reachable
  • openapi doc
  • pricing page
  • llms.txt
  • robots.txt
  • terms page
recent checks (13) · click to expand
TIME STATUS RESP
○ DOWN 10001ms
○ DOWN 10001ms
○ DOWN 10005ms
○ DOWN 10001ms
○ DOWN 10002ms
○ DOWN 10002ms
● OK 752ms
● SLOW 1696ms
● OK 268ms
○ DOWN 10000ms
○ DOWN 10001ms
● OK 1069ms
● OK 1143ms

EMBED THIS BADGE

Show that Second Opinion is monitored on x402-list. Paste this on your site or README, it links back to this live listing.

Second Opinion listed on x402-list
status
Second Opinion uptime on x402-list
live uptime
// HTML
<a href="https://x402-list.com/services/second-opinion?utm_source=badge&utm_medium=referral&utm_campaign=embed">
  <img src="https://x402-list.com/badge/second-opinion.svg" alt="Second Opinion listed on x402-list" height="28">
</a>
// Markdown
[![Second Opinion on x402-list](https://x402-list.com/badge/second-opinion.svg)](https://x402-list.com/services/second-opinion?utm_source=badge&utm_medium=referral&utm_campaign=embed)
// HTML · live uptime variant
<a href="https://x402-list.com/services/second-opinion?utm_source=badge&utm_medium=referral&utm_campaign=embed">
  <img src="https://x402-list.com/badge/second-opinion.svg?data=uptime" alt="Second Opinion uptime on x402-list" height="28">
</a>

RUN THIS SERVICE?

Keep this listing accurate: propose changes to the name, description, website, category or add new endpoints to monitor. Ownership is verified with a domain proof and every change is reviewed manually; measured data stays read-only.

[ update this listing ]