These are observations, not accusations. A band of LOW, MEDIUM or HIGH describes how much of what we check we were able to confirm — it is not a judgement about the operator of an endpoint. Every signal, its weight and its rationale are published on the methodology page, and any operator can claim an endpoint, correct a fact or opt out.

What does this x402 endpoint charge?

https only. We fetch it once, read the 402, and stop.

0.003000 USDC per request

https://keyronne.com/api/chain-tx
Risk band: LOW 100/100

Observed 2026-08-15T14:31:54Z · 132 ms · HTTP 402 · v1 methodology

Endpoint

What we observed about the endpoint
URL https://keyronne.com/api/chain-tx
Canonical https://keyronne.com/api/chain-tx
Endpoint id 26c44e558c55a266c50008c715c0fd07
HTTP status 402
Latency 132 ms
Redirects 0
TLS handshake okThe negotiated TLS version is not exposed to a Worker.
Wire form both the v2 header and a v1 body
Bytes read 2083
Strict decoder accepteddecodePaymentRequired, imported from tx402 — the same code the SDK runs before it pays.

Payment

accepted by the decoder

These terms were accepted by the strict decoder tx402 uses before it pays.

The payment terms this endpoint asks for
Price 0.003000 USDC
Amount (atomic) 3000
Scheme exact
Network eip155:8453 in manifestRecognized means present in the tx402 signed release manifest. Nothing more is claimed.
Asset USDC 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913 in manifestRecognized means present in the tx402 signed release manifest. Nothing more is claimed.
Pay to 0xB86F95EF5FA904318Ea9Df3b59AdCe099b478fC4
Pay to declared dynamic nox402 v2 has no on-the-wire declaration of a dynamic payTo, so this is usually unobservable.
Authorization window 60s
Resource https://keyronne.com/api/chain-tx
MIME type application/json
Description Look up a transaction and its receipt on Ethereum, Base, Arbitrum, Optimism, Polygon, or BNB Chain: status (success/reverted/pending), from/to, value, block, nonce, gas used and price, log count, and any contract created. Public JSON-RPC, no API keys. POST a JSON body like: {"chain":"base","hash":"0xb498053e345acd227657ef2e3de7d9fd9b861d673368419c4b18cfaea20365c8"}
Facilitator not observed

Risk

Band: LOW 100/100 · v1 · static_only

A band describes how much of what we check we were able to confirm. It is not a judgement about the operator of an endpoint.

  • Result: pass 25 The challenge decodes under the strict x402 decoder tx402 uses before paying. challenge_decodes
  • Result: pass 15 The challenge describes the endpoint that served it. resource_origin_match
  • Result: pass 12 The amount is a canonical atomic integer. amount_canonical
  • Result: pass 12 The recipient is a well-formed address for the declared network. pay_to_wellformed
  • Result: pass 8 The network is in the tx402 signed release manifest. network_recognized
  • Result: pass 8 The asset is in the tx402 signed release manifest for this network. asset_recognized
  • Result: skip The challenge named no facilitator. facilitator_known
  • Result: pass 6 The payment scheme is one tx402 can route. scheme_known
  • Result: pass 5 The endpoint was reached over a valid TLS connection. tls_ok
  • Result: pass 4 The authorization window is within the maximum tx402 will sign for. timeout_sane
  • Result: pass 3 No redirect downgraded the connection. redirect_scheme_downgrade
  • Result: pass 3 The endpoint serves the x402 v2 header form. wire_form
  • Result: pass 2 The amount is within the range we see for x402 endpoints. amount_magnitude_band
Weights, thresholds and the rationale for each signal are published at the methodology page. Adding up the weights above reproduces the score — that reproducibility is how a verdict can be argued with.

Security

nothing failing

A check that could not run reports skip, and a skip is never counted as a pass.

  • Result: pass wire_form_detected Served as both.
  • Result: pass base64_strict The strict decoder accepted the header's base64 framing.
  • Result: pass json_wellformed
  • Result: pass x402_version_known Declared x402Version 2.
  • Result: pass accepts_present The challenge offers one way to pay.
  • Result: pass size_within_limit Read 2083 bytes, within the probe's cap.
  • Result: pass network_caip2_wellformed network: eip155:8453
  • Result: pass network_recognized Recognized means present in the tx402 signed release manifest.
  • Result: pass asset_recognized Recognized means present in the tx402 signed release manifest.
  • Result: pass amount_atomic_canonical
  • Result: pass amount_positive
  • Result: pass pay_to_wellformed
  • Result: pass max_timeout_sane
  • Result: pass resource_origin_match
  • Result: pass scheme_known
  • Result: skip facilitator_known The challenge named no facilitator.
  • Result: pass mime_type_wellformed mimeType: application/json
  • Result: pass extra_wellformed `extra` carries 2 field(s), preserved verbatim.
  • Result: skip amount_within_observed_range needs our data No prior observations of this endpoint.
  • Result: skip recipient_matches_observed needs our data No prior observations of this endpoint.
Checks marked “needs our data” compare this scan against the corpus, which is still filling up.

Observed

What the corpus knows about this endpoint
First seen 2026-08-15T04:00:12Z
Last seen 2026-08-15T14:31:54Z
Scans recorded 2
Availability (30d) not measured yet
Latency p50 not measured yet
Recorded changes to this endpoint's terms
2026-08-15T06:15:28Z first_seen: challenge_hash — → 569557d64a5005a15ca78ad19bf21c682fa03a9c33d7e3e9107654498380b1fc

Test with tx402 →

Pre-filled with this endpoint's real terms. Your signer stays in your process — this service never sees a key, never asks for one, and cannot build a payment.

CLI — dry run, nothing is signed
npx tx402 call "https://keyronne.com/api/chain-tx" \
  --max-spend "0.003000 USDC" \
  --network "eip155:8453" \
  --dry-run

# --dry-run stops after the policy decision. Nothing is signed and nothing is spent.
TypeScript
import { createTx402Client } from "tx402";
// Your signer stays in your process. tools.tx402.io never sees a key,
// never asks for one, and cannot build a payment.
import { signers } from "./signers.js";

const tx402 = createTx402Client({
  signers,
  policy: {
    maxPerRequest: "0.003000 USDC",
    allowedDomains: ["keyronne.com"],
    allowedNetworks: ["eip155:8453"],
  },
});

// Policy and budget are committed before the signer is reachable, so a
// refusal here is a payment that was never authorized.
const response = await tx402.fetch("https://keyronne.com/api/chain-tx");
Python
from tx402 import Tx402Client, Policy

# Your signer stays in your process. tools.tx402.io never sees a key,
# never asks for one, and cannot build a payment.
tx402 = Tx402Client(
    evm_signer=evm,
    policy=Policy(
        max_per_request="0.003000 USDC",
        allowed_domains=["keyronne.com"],
        allowed_networks=["eip155:8453"],
    ),
)

# Policy and budget are committed before the signer is reachable, so a
# refusal here is a payment that was never authorized.
response = tx402.fetch("https://keyronne.com/api/chain-tx")
This report, as JSON or Markdown
curl -sS 'https://tools.tx402.io/api/v1/inspect?url=https%3A%2F%2Fkeyronne.com%2Fapi%2Fchain-tx'

# The same result as Markdown, for a terminal or an agent:
curl -sS -H 'Accept: text/markdown' 'https://tools.tx402.io/inspect?url=https%3A%2F%2Fkeyronne.com%2Fapi%2Fchain-tx'

Share this report

Share links expire. Nothing is recorded about who created one.

The challenge, as served

Public data: the endpoint serves this to anyone who asks. It is shown exactly as it arrived, truncated to the documented cap.

raw challenge
eyJ4NDAyVmVyc2lvbiI6MiwiZXJyb3IiOiJQQVlNRU5ULVNJR05BVFVSRSBoZWFkZXIgaXMgcmVxdWlyZWQiLCJyZXNvdXJjZSI6eyJ1cmwiOiJodHRwczovL2tleXJvbm5lLmNvbS9hcGkvY2hhaW4tdHgiLCJkZXNjcmlwdGlvbiI6Ikxvb2sgdXAgYSB0cmFuc2FjdGlvbiBhbmQgaXRzIHJlY2VpcHQgb24gRXRoZXJldW0sIEJhc2UsIEFyYml0cnVtLCBPcHRpbWlzbSwgUG9seWdvbiwgb3IgQk5CIENoYWluOiBzdGF0dXMgKHN1Y2Nlc3MvcmV2ZXJ0ZWQvcGVuZGluZyksIGZyb20vdG8sIHZhbHVlLCBibG9jaywgbm9uY2UsIGdhcyB1c2VkIGFuZCBwcmljZSwgbG9nIGNvdW50LCBhbmQgYW55IGNvbnRyYWN0IGNyZWF0ZWQuIFB1YmxpYyBKU09OLVJQQywgbm8gQVBJIGtleXMuIFBPU1QgYSBKU09OIGJvZHkgbGlrZToge1wiY2hhaW5cIjpcImJhc2VcIixcImhhc2hcIjpcIjB4YjQ5ODA1M2UzNDVhY2QyMjc2NTdlZjJlM2RlN2Q5ZmQ5Yjg2MWQ2NzMzNjg0MTljNGIxOGNmYWVhMjAzNjVjOFwifSIsIm1pbWVUeXBlIjoiYXBwbGljYXRpb24vanNvbiIsInNlcnZpY2VOYW1lIjoiRVZNIFRyYW5zYWN0aW9uIiwidGFncyI6WyJibG9ja2NoYWluIiwidHJhbnNhY3Rpb24iLCJyZWNlaXB0IiwiZXZtIiwib25jaGFpbiJdfSwiYWNjZXB0cyI6W3sic2NoZW1lIjoiZXhhY3QiLCJuZXR3b3JrIjoiZWlwMTU1Ojg0NTMiLCJhbW91bnQiOiIzMDAwIiwiYXNzZXQiOiIweDgzMzU4OWZDRDZlRGI2RTA4ZjRjN0MzMkQ0ZjcxYjU0YmRBMDI5MTMiLCJwYXlUbyI6IjB4Qjg2Rjk1RUY1RkE5MDQzMThFYTlEZjNiNTlBZENlMDk5YjQ3OGZDNCIsIm1heFRpbWVvdXRTZWNvbmRzIjo2MCwiZXh0cmEiOnsibmFtZSI6IlVTRCBDb2luIiwidmVyc2lvbiI6IjIifX1dLCJleHRlbnNpb25zIjp7ImJhemFhciI6eyJpbmZvIjp7ImlucHV0Ijp7InR5cGUiOiJodHRwIiwibWV0aG9kIjoiUE9TVCIsImJvZHlUeXBlIjoianNvbiIsImJvZHkiOnsiY2hhaW4iOiJiYXNlIiwiaGFzaCI6IjB4YjQ5ODA1M2UzNDVhY2QyMjc2NTdlZjJlM2RlN2Q5ZmQ5Yjg2MWQ2NzMzNjg0MTljNGIxOGNmYWVhMjAzNjVjOCJ9fSwib3V0cHV0Ijp7InR5cGUiOiJqc29uIiwiZXhhbXBsZSI6eyJjaGFpbiI6ImJhc2UiLCJzdGF0dXMiOiJzdWNjZXNzIiwiZnJvbSI6IjB4YjVkMOKApiIsInRvIjoiMHg4MzM14oCmIiwidmFsdWUiOnsid2VpIjoiMCIsImV0aCI6IjAifSwiYmxvY2tOdW1iZXIiOjQ4MzQ2NzA4LCJnYXMiOnsibGltaXQiOjkwMDAwLCJ1c2VkIjo0NjAwMCwicHJpY2VHd2VpIjoiMC4wMDUifX19fSwic2NoZW1hIjp7IiRzY2hlbWEiOiJodHRwczovL2pzb24tc2NoZW1hLm9yZy9kcmFmdC8yMDIwLTEyL3NjaGVtYSIsInR5cGUiOiJvYmplY3QiLCJwcm9wZXJ0aWVzIjp7ImlucHV0Ijp7InR5cGUiOiJvYmplY3QiLCJwcm9wZXJ0aWVzIjp7InR5cGUiOnsidHlwZSI6InN0cmluZyIsImNvbnN0IjoiaHR0cCJ9LCJtZXRob2QiOnsidHlwZSI6InN0cmluZyIsImVudW0iOlsiUE9TVCJdfSwiYm9keVR5cGUiOnsidHlwZSI6InN0cmluZyIsImVudW0iOlsianNvbiJdfSwiYm9keSI6eyJ0eXBlIjoib2JqZWN0IiwicmVxdWlyZWQiOlsiY2hhaW4iLCJoYXNoIl0sInByb3BlcnRpZXMiOnsiY2hhaW4iOnsidHlwZSI6InN0cmluZyIsImVudW0iOlsiZXRoZXJldW0iLCJiYXNlIiwiYXJiaXRydW0iLCJvcHRpbWlzbSIsInBvbHlnb24iLCJic2MiXX0sImhhc2giOnsidHlwZSI6InN0cmluZyIsImRlc2NyaXB0aW9uIjoiVHJhbnNhY3Rpb24gaGFzaCAoMHggKyA2NCBoZXgpLiJ9fX19fSwib3V0cHV0Ijp7InR5cGUiOiJvYmplY3QiLCJwcm9wZXJ0aWVzIjp7ImNoYWluIjp7InR5cGUiOiJzdHJpbmcifSwiaGFzaCI6eyJ0eXBlIjoic3RyaW5nIn0sInN0YXR1cyI6eyJ0eXBlIjoic3RyaW5nIn0sImZyb20iOnsidHlwZSI6InN0cmluZyJ9LCJ0byI6eyJ0eXBlIjoic3RyaW5nIn0sInZhbHVlIjp7InR5cGUiOiJvYmplY3QifSwiYmxvY2tOdW1iZXIiOnsidHlwZSI6ImludGVnZXIifSwiZ2FzIjp7InR5cGUiOiJvYmplY3QifSwibG9ncyI6eyJ0eXBlIjoiaW50ZWdlciJ9fX19LCJyZXF1aXJlZCI6WyJpbnB1dCJdfX19fQ==

SHA-256 of the canonicalized challenge: 569557d64a5005a15ca78ad19bf21c682fa03a9c33d7e3e9107654498380b1fc

Raw signals

The exact input the scoring function was given. A signal we could not determine has observed: false and contributes nothing to the score — it is never counted as a failure.

signals
[
  {
    "id": "probe_ok",
    "value": true,
    "observed": true,
    "detail": null
  },
  {
    "id": "challenge_served",
    "value": true,
    "observed": true,
    "detail": null
  },
  {
    "id": "challenge_decodes",
    "value": true,
    "observed": true,
    "detail": null
  },
  {
    "id": "wire_form",
    "value": "both",
    "observed": true,
    "detail": null
  },
  {
    "id": "x402_version",
    "value": 2,
    "observed": true,
    "detail": null
  },
  {
    "id": "tls_ok",
    "value": true,
    "observed": true,
    "detail": null
  },
  {
    "id": "tls_protocol",
    "value": null,
    "observed": false,
    "detail": "The negotiated TLS version is not exposed to the probe."
  },
  {
    "id": "redirect_count",
    "value": 0,
    "observed": true,
    "detail": null
  },
  {
    "id": "redirect_scheme_downgrade",
    "value": false,
    "observed": true,
    "detail": "Cross-scheme redirects are refused."
  },
  {
    "id": "resource_origin_match",
    "value": true,
    "observed": true,
    "detail": null
  },
  {
    "id": "network_recognized",
    "value": true,
    "observed": true,
    "detail": "Recognized means present in the tx402 signed release manifest."
  },
  {
    "id": "asset_recognized",
    "value": true,
    "observed": true,
    "detail": "Recognized means present in the tx402 signed release manifest."
  },
  {
    "id": "facilitator_known",
    "value": null,
    "observed": false,
    "detail": "The challenge named no facilitator."
  },
  {
    "id": "amount_canonical",
    "value": true,
    "observed": true,
    "detail": null
  },
  {
    "id": "amount_magnitude_band",
    "value": "micro",
    "observed": true,
    "detail": null
  },
  {
    "id": "pay_to_wellformed",
    "value": true,
    "observed": true,
    "detail": null
  },
  {
    "id": "pay_to_declared_dynamic",
    "value": false,
    "observed": true,
    "detail": null
  },
  {
    "id": "timeout_sane",
    "value": true,
    "observed": true,
    "detail": null
  },
  {
    "id": "scheme_known",
    "value": true,
    "observed": true,
    "detail": null
  },
  {
    "id": "requirement_count",
    "value": 1,
    "observed": true,
    "detail": null
  },
  {
    "id": "challenge_size_bytes",
    "value": 2083,
    "observed": true,
    "detail": null
  },
  {
    "id": "first_seen_age_days",
    "value": null,
    "observed": false,
    "detail": "No history yet."
  },
  {
    "id": "scan_count",
    "value": null,
    "observed": false,
    "detail": "No history yet."
  },
  {
    "id": "availability_30d",
    "value": null,
    "observed": false,
    "detail": "No history yet."
  },
  {
    "id": "latency_p50_ms",
    "value": null,
    "observed": false,
    "detail": "No history yet."
  },
  {
    "id": "price_changes_90d",
    "value": null,
    "observed": false,
    "detail": "No history yet."
  },
  {
    "id": "recipient_changes_90d",
    "value": null,
    "observed": false,
    "detail": "No history yet."
  },
  {
    "id": "recipient_unstable_undeclared",
    "value": null,
    "observed": false,
    "detail": "No history yet."
  },
  {
    "id": "terms_changed_within_24h",
    "value": null,
    "observed": false,
    "detail": "No history yet."
  }
]

JSON Markdown Methodology Error reference