Run HTTP + SSL + DNS + domain-expiry in one call and return a combined health snapshot
Run HTTP + SSL + DNS + domain-expiry in one call and return a combined health snapshot. The single pre-flight check to run before crawling, deploying to, or depending on a site — cheaper and one round-trip instead of four.
50000 (raw units)
price
21
calls / 30d
1
unique payers
2026-09-13
updated
Provider
x402.cloudpulsepoint.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x05a877EF93E7818828D199E2Df0028bca3C75bf0",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "50000",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"url": "https://example.com"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"check": "site",
"network": "eip155:8453",
"result": {
"checkedAt": "2026-07-24T15:30:16.348Z",
"dns": {
"records": "104.20.23.154",
"status": "UP"
},
"domain": {
"daysUntilExpiry": 384,
"status": "UP"
},
"http": {
"responseMs": 38,
"statusCode": 200,
"up": true
},
"ssl": {
"daysUntilExpiry": 36,
"status": "UP"
},
"url": "https://example.com/"
}
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"url": {
"description": "Full http(s) URL of the site to check, e.g. \"https://example.com\". Must resolve to a public address — private, loopback, link-local, and cloud-metadata targets are rejected with HTTP 400 before any payment.",
"type": "string"
}
},
"required": [
"url"
]
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"check": {
"const": "site",
"description": "Identifies which check produced this result."
},
"network": {
"description": "CAIP-2 id of the chain the payment settled on (e.g. eip155:8453 = Base).",
"type": "string"
},
"result": {
"properties": {
"checkedAt": {
"description": "ISO-8601 timestamp the snapshot was taken.",
"format": "date-time",
"type": "string"
},
"dns": {
"description": "DNS sub-result: { status, records }.",
"type": "object"
},
"domain": {
"description": "Domain-expiry sub-result: { status, daysUntilExpiry }.",
"type": "object"
},
"http": {
"description": "HTTP sub-result: { up, statusCode, responseMs }.",
"type": "object"
},
"ssl": {
"description": "SSL sub-result: { status, daysUntilExpiry }.",
"type": "object"
},
"url": {
"description": "The normalized URL that was checked.",
"type": "string"
}
},
"type": "object"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://x402.cloudpulsepoint.com/agent/check/site" # -> 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.cloudpulsepoint.com/agent/check/site");
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.cloudpulsepoint.com/agent/check/site")
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/3176.json, and this resource appears in /discovery/resources and /discovery/search.