Business verification snapshot: state-registry status (NY/CO/PA/OR/CT), website-alive, add
Business verification snapshot: state-registry status (NY/CO/PA/OR/CT), website-alive, address validation, phone plausibility -> verdict + confidence + flags. Not a credit report.
100000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-07
updated
Provider
business-verification-machine.onrender.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x91173e7489b91229f4a056a69a2b8daec35382da",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "100000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"name": "Chipotle Mexican Grill",
"state": "CO"
},
"type": "http"
},
"output": {
"example": {
"checks": [
{
"check": "registry",
"detail": "matched 'CHIPOTLE MEXICAN GRILL OF COLORADO, LLC' status='good standing'",
"passed": true,
"ran": true,
"source": "data.colorado.gov"
}
],
"confidence": 100,
"coverage_note": "Registry coverage: CO, CT, NY, OR, PA (state open-data portals).",
"flags": [],
"verdict": "VERIFIED"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"properties": {
"address": {
"description": "Optional US street address to validate",
"type": "string"
},
"name": {
"description": "Business name to verify",
"type": "string"
},
"phone": {
"description": "Optional US/CA phone to format-check",
"type": "string"
},
"state": {
"description": "US state registry to check: NY, CO, PA, OR, or CT",
"type": "string"
},
"website": {
"description": "Optional website to liveness-check",
"type": "string"
}
},
"required": [
"name",
"state"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"checks": {
"type": "array"
},
"confidence": {
"type": [
"integer",
"null"
]
},
"coverage_note": {
"type": "string"
},
"flags": {
"items": {
"type": "string"
},
"type": "array"
},
"verdict": {
"enum": [
"VERIFIED",
"PARTIAL",
"UNVERIFIED",
"NOT_FOUND"
],
"type": "string"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://business-verification-machine.onrender.com/v1/verify" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://business-verification-machine.onrender.com/v1/verify");
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://business-verification-machine.onrender.com/v1/verify")
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/13547.json, and this resource appears in /discovery/resources and /discovery/search.