Finds the contradictions on a caller-supplied product page that make a buying agent abort:
Finds the contradictions on a caller-supplied product page that make a buying agent abort: offer price in JSON-LD or Microdata against the prices visible in the text, structured availability against sold-out and add-to-cart signals, JSON-LD against Microdata, variants that cannot be told apart, shipping cost and return period as data or only as prose. Returns a verdict with every contradiction and gap explained. Machine extractability, not price law; no checkout, no outbound request.
150000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-11
updated
Provider
api.ozdreamtools.de · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x4Dd5E59475A55f1C2c0816469600663cb74cC1Dc",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "150000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"html": "<!doctype html><html lang=\"de\"><head><title>Testartikel</title></head><body><div itemscope itemtype=\"https://schema.org/Product\"><h1 itemprop=\"name\">Testartikel</h1><div itemprop=\"offers\" itemscope itemtype=\"https://schema.org/Offer\"><meta itemprop=\"price\" content=\"49.90\"><meta itemprop=\"priceCurrency\" content=\"EUR\"><link itemprop=\"availability\" href=\"https://schema.org/InStock\"></div></div><p>Statt 59,90 € jetzt 39,90 €</p><button>In den Warenkorb</button></body></html>"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"availability": {
"form": "url",
"forms": [
"url"
],
"valid": true,
"value": "https://schema.org/InStock"
},
"checked_at": "2026-09-02T12:00:00.000Z",
"contradictions": [
{
"detail": "…",
"key": "price_data_versus_visible"
}
],
"data_source": "microdata",
"gaps": [
{
"detail": "…",
"key": "shipping_not_as_data"
},
{
"detail": "…",
"key": "returns_not_as_data"
}
],
"legend": {
"verdict": "…"
},
"not_checked": [
"…"
],
"price": {
"as_data": true,
"currency": "EUR",
"microdata_value": 49.9,
"value": 49.9
},
"products": {
"count": 1,
"jsonld_blocks": 0,
"unambiguous": true
},
"returns": {
"as_data": false,
"days": null
},
"shipping": {
"as_data": false,
"fields": []
},
"variants": {
"count": 0,
"distinguishable": null,
"formats_consistent": null
},
"verdict": "contradictory",
"visible": {
"add_to_cart_text": true,
"prices": [
39.9,
59.9
],
"shop_markers": true,
"sold_out_text": false
}
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"html": {
"description": "Full HTML of one product page, as served (scripts are not executed)",
"type": "string"
}
},
"required": [
"html"
]
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://api.ozdreamtools.de/api/product/check" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://api.ozdreamtools.de/api/product/check");
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://api.ozdreamtools.de/api/product/check")
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/3612.json, and this resource appears in /discovery/resources and /discovery/search.