x402 endpoint reliability pre-flight: factual service-delivery measurements of a target x4
x402 endpoint reliability pre-flight: factual service-delivery measurements of a target x402 endpoint before an agent pays it — reachability/uptime rate, valid-402 rate, response latency (p50/p95/p99), last status, and sampled paid delivery verification. Facts only (no trust score, no 'scam' label). Check whether an endpoint is live and delivers before spending on it.
10000 (raw units)
price
10
calls / 30d
7
unique payers
2026-09-17
updated
Provider
orcpin.dev · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x8B1CF12e7efe6AEA59cD1124eBbe7709E3Ac6085",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"url": "https://example.com/v1/some-resource"
},
"type": "http"
},
"output": {
"example": {
"as_of": "rolling_probes",
"disclaimer": "Independent service-delivery measurements of a public x402 endpoint. Facts only — not an endorsement, rating, or advice. See /terms.",
"facts": {
"consecutive_failures": 0,
"delivery_verified": {
"at": "2026-06-21T00:00:00.000Z",
"samples": 8,
"verified": true
},
"http_success_rate": 0.97,
"last_status": 402,
"latency_ms": {
"basis": "histogram",
"p50": 250,
"p95": 1000,
"p99": 2500
},
"reachable_rate": 0.99,
"valid_402_rate": 0.99
},
"first_seen": "2026-05-20T00:00:00.000Z",
"flags": [],
"last_verified": "2026-06-22T00:00:00.000Z",
"methodology": "https://orcpin.dev/methodology#endpoint_reliability",
"sample_size": 142,
"schema_version": "0.1.0",
"spec": "endpoint-reliability",
"status": "measured",
"url": "https://example.com/v1/some-resource",
"window": "rolling_60d"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"url": {
"description": "Target x402 endpoint URL to read reliability facts for.",
"format": "uri",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"disclaimer": {
"type": "string"
},
"facts": {
"type": "object"
},
"flags": {
"items": {
"type": "string"
},
"type": "array"
},
"sample_size": {
"type": "integer"
},
"schema_version": {
"type": "string"
},
"status": {
"type": "string"
},
"url": {
"type": "string"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://orcpin.dev/v1/endpoint-reliability" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://orcpin.dev/v1/endpoint-reliability");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://orcpin.dev/v1/endpoint-reliability")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/1480.json, and this resource appears in /discovery/resources and /discovery/search.