Run a website due diligence and counterparty risk report with seven live checks in one cal
Run a website due diligence and counterparty risk report with seven live checks in one call: DNS and RDAP registration, domain age, TLS, page metadata, technology fingerprint, hosting context, OFAC name screening, and GLEIF legal-entity lookup. Hosting context carries no threat score and an OFAC name match requires human review.
40000 (raw units)
price
5
calls / 30d
4
unique payers
2026-09-08
updated
Provider
ai-data-marketplace-1042299154756.us-central1.run.app · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x8647F7D7a1368a467Ad1FF757fBc2e7167973558",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "40000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"domain": "stripe.com",
"organization": "Stripe, Inc."
},
"type": "http"
},
"output": {
"example": {
"checks_completed": 7,
"checks_requested": 7,
"conclusion": "no_obvious_issue_detected",
"domain": "stripe.com",
"domain_age_days": 11287,
"risk_flags": [],
"success": true
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"additionalProperties": true,
"properties": {
"domain": {
"description": "Public hostname to inspect, without a path.",
"type": "string"
},
"organization": {
"description": "Legal or trading name to screen against the OFAC SDN list and the GLEIF register. Supply this when you know it: registrant details are redacted in RDAP, so without it the name is inferred from the site's own declared name or the domain label, which screens less precisely.",
"type": "string"
}
},
"required": [
"domain"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"additionalProperties": true,
"properties": {
"checks_completed": {
"type": "integer"
},
"checks_requested": {
"type": "integer"
},
"conclusion": {
"type": "string"
},
"domain": {
"type": "string"
},
"domain_age_days": {
"type": "integer"
},
"risk_flags": {
"items": {},
"type": "array"
},
"success": {
"type": "boolean"
}
},
"required": [
"success",
"domain",
"conclusion",
"checks_completed",
"checks_requested",
"domain_age_days",
"risk_flags"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://ai-data-marketplace-1042299154756.us-central1.run.app/api/v1/website_due_diligence" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://ai-data-marketplace-1042299154756.us-central1.run.app/api/v1/website_due_diligence");
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://ai-data-marketplace-1042299154756.us-central1.run.app/api/v1/website_due_diligence")
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/3218.json, and this resource appears in /discovery/resources and /discovery/search.