Produce a complete vendor onboarding risk report from live domain, TLS, website, hosting,
Produce a complete vendor onboarding risk report from live domain, TLS, website, hosting, OFAC, GLEIF, and optional SEC evidence, with an explicit decision and next action.
20000 (raw units)
price
3
calls / 30d
1
unique payers
2026-09-10
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": "20000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"company": "Stripe",
"domain": "stripe.com",
"ticker": ""
},
"type": "http"
},
"output": {
"example": {
"decision": "no_obvious_public_risk_detected",
"executive_summary": {
"critical_findings": 0,
"sanctions_name_match": false,
"warnings": 0
},
"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": {
"company": {
"description": "Legal or trading name for entity and sanctions screening.",
"type": "string"
},
"domain": {
"description": "Public vendor domain.",
"type": "string"
},
"ticker": {
"description": "Optional US public-company ticker for SEC evidence.",
"type": "string"
}
},
"required": [
"domain"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"additionalProperties": true,
"properties": {
"decision": {
"type": "string"
},
"executive_summary": {
"additionalProperties": true,
"properties": {
"critical_findings": {
"type": "integer"
},
"sanctions_name_match": {
"type": "boolean"
},
"warnings": {
"type": "integer"
}
},
"required": [
"critical_findings",
"warnings",
"sanctions_name_match"
],
"type": "object"
},
"success": {
"type": "boolean"
}
},
"required": [
"success",
"decision",
"executive_summary"
],
"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/vendor_risk_report" # -> 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/vendor_risk_report");
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/vendor_risk_report")
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/3225.json, and this resource appears in /discovery/resources and /discovery/search.