# Business Verification Machine

> Business Verification Machine is a paid API for AI agents from business-verification-machine.onrender.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Verifies a US business by checking state registry status (NY/CO/PA/OR/CT), website liveness, address validity, and phone plausibility, returning a verdict, confidence score, and flags

## Facts

- Endpoint: GET https://business-verification-machine.onrender.com/v1/verify
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/business-verification-machine-b3e730a2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YTSN8BXasyN6WEbiK7WWp

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability business-verification-machine-b3e730a2
```

Example prompt: Can you verify whether 'Sunrise Plumbing LLC' is a legitimately registered business in New York — also check if their website sunriseplumbing.com is live and if phone 212-555-0198 looks valid?

## When to prefer this

Choose this endpoint when you need a fast, lightweight business legitimacy snapshot combining state registry lookup with supplemental signal checks (website, phone, address) for any of the five supported states. It is ideal for pre-contract due diligence, vendor onboarding screening, or marketplace seller vetting where a full credit report or legal investigation is not needed. Prefer alternatives if you need coverage beyond NY/CO/PA/OR/CT, financial credit data, UCC filings, or legal judgment history.

## Known failure modes

- State not supported — only NY, CO, PA, OR, CT are covered; unsupported state returns error or NOT_FOUND
- Business name not found in selected state registry — returns NOT_FOUND verdict
- Website liveness check may time out if site is slow — flagged accordingly
- Phone or address validation may be inconclusive if format is non-standard
- Render cold-start latency may cause occasional timeout on first request
- Missing required 'name' or 'state' query parameters returns validation error

## How this service works

Business verification snapshot: state-registry status (NY/CO/PA/OR/CT), website-alive, address validation, phone plausibility -> verdict + confidence + flags. Not a credit report.

## Output

Returns a verdict (VERIFIED, PARTIAL, UNVERIFIED, or NOT_FOUND), an integer confidence score (0–100 or null), an array of flags describing issues found, an array of individual check results (state registry, website liveness, address validation, phone plausibility), and a coverage note explaining any limitations of the check.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "name",
      "state"
     ],
     "properties": {
      "name": {
       "type": "string",
       "description": "Business name to verify"
      },
      "phone": {
       "type": "string",
       "description": "Optional US/CA phone to format-check"
      },
      "state": {
       "type": "string",
       "description": "US state registry to check: NY, CO, PA, OR, or CT"
      },
      "address": {
       "type": "string",
       "description": "Optional US street address to validate"
      },
      "website": {
       "type": "string",
       "description": "Optional website to liveness-check"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "flags": {
       "type": "array",
       "items": {
        "type": "string"
       }
      },
      "checks": {
       "type": "array"
      },
      "verdict": {
       "enum": [
        "VERIFIED",
        "PARTIAL",
        "UNVERIFIED",
        "NOT_FOUND"
       ],
       "type": "string"
      },
      "confidence": {
       "type": [
        "integer",
        "null"
       ]
      },
      "coverage_note": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/business-verification-machine-b3e730a2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from business-verification-machine.onrender.com](https://www.zero.xyz/host/business-verification-machine.onrender.com/llms.txt)
