Buy one website report ($3) with product=scan and url, or four competitor scans ($2) with
Buy one website report ($3) with product=scan and url, or four competitor scans ($2) with product=comparison and an existing current-rubric runId. Cached results are free. On 202, poll statusUrl, then open reportUrl. If an accepted job fails, keep purchaseId and contact support; do not buy again. Budget and capacity limits apply.
3000000 (raw units)
price
3
calls / 30d
3
unique payers
2026-09-11
updated
Provider
readiness.pay.zeroclick.io · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x9811c0900fcb719bbc363a3846d2d6db2771dea8",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "3000000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "zeroclick:card",
"payTo": "merchant",
"asset": "USD",
"amount": "300",
"maxTimeoutSeconds": 3600
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"product": "scan",
"url": "checkout-probe.zeroclick.ai"
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"examples": [
{
"product": "scan",
"url": "checkout-probe.zeroclick.ai"
},
{
"product": "comparison",
"runId": "333b1a76a6bb4af3"
}
],
"oneOf": [
{
"additionalProperties": false,
"example": {
"product": "scan",
"url": "checkout-probe.zeroclick.ai"
},
"properties": {
"product": {
"enum": [
"scan"
],
"type": "string"
},
"url": {
"description": "One website URL or domain; no batches.",
"maxLength": 2048,
"minLength": 1,
"type": "string"
}
},
"required": [
"product",
"url"
],
"type": "object"
},
{
"additionalProperties": false,
"example": {
"product": "comparison",
"runId": "333b1a76a6bb4af3"
},
"properties": {
"product": {
"enum": [
"comparison"
],
"type": "string"
},
"runId": {
"description": "ID of an existing completed target report using the current rubric.",
"pattern": "^[a-f0-9]{16}$",
"type": "string"
}
},
"required": [
"product",
"runId"
],
"type": "object"
}
]
},
"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"
}
},
"required": [
"input"
],
"type": "object"
}
},
"zeroclick": {
"info": {
"payment": {
"amountUsd": "3.000000",
"id": "apay_Njq1QGcVsJRL3iksrVT0_"
},
"requestId": "zcreq__IMCXJkvc8F71XHCPUQze",
"service": "readiness"
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"agentId": {
"type": "string"
},
"payment": {
"properties": {
"amountUsd": {
"type": "string"
},
"id": {
"type": "string"
}
},
"required": [
"id",
"amountUsd"
],
"type": "object"
},
"requestId": {
"type": "string"
},
"service": {
"type": "string"
}
},
"required": [
"payment"
],
"type": "object"
}
}
}Use it
curl
curl "https://readiness.pay.zeroclick.io/api/v1/scans" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://readiness.pay.zeroclick.io/api/v1/scans");
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://readiness.pay.zeroclick.io/api/v1/scans")
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/10963.json, and this resource appears in /discovery/resources and /discovery/search.