Insured data feed: pay a premium for an ETH/USD price snapshot (?premiumUsdc=, ?maxDeviati
Insured data feed: pay a premium for an ETH/USD price snapshot (?premiumUsdc=, ?maxDeviationPct=, ?checkDelaySeconds=). If the real price has drifted more than your insured tolerance by the checkpoint, claim a 2x refund — a real payout for genuinely stale data, not a fabricated failure.
10000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-12
updated
Provider
lab.paidapis.net · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xf74f2020aC3d73F2Bf5ee0F8Bf635475eA881319",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "POST",
"queryParams": {
"checkDelaySeconds": 0,
"maxDeviationPct": 0,
"premiumUsdc": 0,
"subscriberAddress": ""
},
"type": "http"
},
"output": {
"example": {
"actualDeviationPct": 0,
"checkAt": "",
"liveEthUsdPriceAtCheck": 0,
"maxDeviationPct": 0,
"premiumUsdc": 0,
"snapshotEthUsdPrice": 0,
"status": "pending-check",
"subscribedAt": "",
"subscriberAddress": "",
"subscriptionId": ""
},
"type": "json"
}
},
"schema": {
"properties": {
"input": {
"properties": {
"queryParams": {
"properties": {
"checkDelaySeconds": {
"description": "Seconds until the checkpoint, up to 3600 (default 30).",
"type": "integer"
},
"maxDeviationPct": {
"description": "Insured tolerance in percent (default 1).",
"type": "number"
},
"premiumUsdc": {
"description": "Premium to pay, up to 5.",
"type": "number"
},
"subscriberAddress": {
"description": "Wallet address eligible for the insurance payout.",
"type": "string"
}
},
"required": [
"subscriberAddress",
"premiumUsdc"
],
"type": "object"
}
}
},
"output": {
"properties": {
"example": {
"properties": {
"actualDeviationPct": {
"type": [
"number",
"null"
]
},
"checkAt": {
"type": "string"
},
"liveEthUsdPriceAtCheck": {
"type": [
"number",
"null"
]
},
"maxDeviationPct": {
"type": "number"
},
"premiumUsdc": {
"type": "number"
},
"snapshotEthUsdPrice": {
"type": "number"
},
"status": {
"enum": [
"pending-check",
"held",
"claim-eligible",
"refunded"
],
"type": "string"
},
"subscribedAt": {
"type": "string"
},
"subscriberAddress": {
"type": "string"
},
"subscriptionId": {
"type": "string"
}
},
"type": "object"
}
}
}
}
}
}
}Use it
curl
curl "https://lab.paidapis.net/api/insured-feed/subscribe" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://lab.paidapis.net/api/insured-feed/subscribe");
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://lab.paidapis.net/api/insured-feed/subscribe")
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/12415.json, and this resource appears in /discovery/resources and /discovery/search.