Given any public HTTP(S) URL, returns a measured liveness verdict - LIVE, PAUSED, GATED, C
Given any public HTTP(S) URL, returns a measured liveness verdict - LIVE, PAUSED, GATED, CHALLENGED, DEGRADED, DEAD or UNKNOWN - with every reason carrying the source it was read from. The point is the case a status check misses: a front door answering 200 over a back end that stopped. Also sold at this origin: good ($149.00, POST /x402/good) - The x402 rail, ninety days - framed print, 24 x 36 in; census ($100.00, GET /x402/census) - The x402 rail census, ninety days, whole.
10000 (raw units)
price
2
calls / 30d
2
unique payers
2026-09-17
updated
Provider
x402.shortforge.dev · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x61c67Cf010F70f6Ac7b46DE2fD578204C923e29E",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"url": "https://api.example.com"
},
"type": "http"
},
"output": {
"example": {
"reasons": [
{
"code": "http_200",
"detail": "front door answered 200",
"source": "GET /"
}
],
"url": "https://api.example.com",
"verdict": "LIVE"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"headers": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"properties": {
"url": {
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://x402.shortforge.dev/x402/probe" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://x402.shortforge.dev/x402/probe");
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://x402.shortforge.dev/x402/probe")
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/12399.json, and this resource appears in /discovery/resources and /discovery/search.