Audit a public https URL
Audit a public https URL. POST {"url":"https://your.site","min_score":80} ($0.02). After payment we fetch the origin (headers, HSTS, CSP, TLS, cookies, DNS/email, security.txt) and return a 0–100 score, do_this_first, and ci_failed for CI. Free preview is snapshot-only {headers}. Badge: GET /v1/tools/site-hygiene-score/badge?host=your.site.
20000 (raw units)
price
3
calls / 30d
1
unique payers
2026-08-21
updated
Provider
quietstore-production.edge-7e13f.workers.dev · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x8f9ef7f8c4744bfaedaa5d315c21f9770c10f931",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "20000",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"min_score": 80,
"url": "https://example.com/"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"metered": true,
"result": {
"ci_failed": true,
"do_this_first": [
{
"fix": "Add Strict-Transport-Security on all HTTPS responses with max-age≥15552000.",
"id": "HDR_MISSING_HSTS",
"title": "Strict-Transport-Security header missing"
}
],
"label": "Needs work",
"mode": "live",
"pass": false,
"rubric_version": 1,
"score": 64
},
"tool": {
"id": "tool-site-hygiene-score",
"price_version": 1,
"title": "Scan a live URL → 0–100 hygiene score + ranked fixes"
}
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"type": "object"
},
"bodyType": {
"enum": [
"json"
],
"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://quietstore-production.edge-7e13f.workers.dev/v1/tools/site-hygiene-score" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://quietstore-production.edge-7e13f.workers.dev/v1/tools/site-hygiene-score");
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://quietstore-production.edge-7e13f.workers.dev/v1/tools/site-hygiene-score")
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/5388.json, and this resource appears in /discovery/resources and /discovery/search.