Checks a website imprint (Impressum, legal notice) in caller-supplied HTML against the eig
Checks a website imprint (Impressum, legal notice) in caller-supplied HTML against the eight groups of mandatory disclosures in § 5 DDG, the German imprint statute: name/address/representation, contact incl. e-mail, supervisory authority, commercial register, professional details, VAT ID, wind-up, audiovisual services. Conditional duties the HTML cannot decide come back as unknown, never as a defect. Finding with citation, not legal advice.
100000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-16
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": "100000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"html": "<p>Muster GmbH<br>Musterstraße 12<br>65812 Bad Soden</p><p>Geschäftsführer: Max Mustermann</p><p><a href=\"mailto:[email protected]\">[email protected]</a></p>"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"checked_at": "2026-07-23T09:00:00.000Z",
"items": [
{
"conditional": false,
"ddg": "§ 5 Abs. 1 Nr. 1",
"facts": {},
"key": "name_address",
"status": "ok"
}
],
"legal_basis": {
"note": "…",
"sources": [
"https://www.gesetze-im-internet.de/ddg/__5.html"
]
},
"not_applicable": [
"wind_up"
],
"not_decidable": [
"supervisory_authority"
],
"score": {
"hint": "…",
"max": 8,
"points": 8
}
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"html": {
"description": "HTML of the imprint page",
"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/imprint/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/imprint/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/imprint/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/3607.json, and this resource appears in /discovery/resources and /discovery/search.