# Toll402 Business Verifier

> Toll402 Business Verifier is a paid API for AI agents from toll402.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Verifies whether a business is real and its contact information is live by running checks against a directory and performing real-time validation of website availability, phone presence, domain age, and more.

## Facts

- Endpoint: GET https://toll402.dev/v1/biz/verify
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/toll402-business-verifier-01848dc8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Cboy4t6mdSAk_MH9OpwTj

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 toll402-business-verifier-01848dc8
```

Example prompt: Can you verify whether 'Sunrise Roofing LLC' is a real business? Their website is sunriseroofing.com and their phone is 555-312-4400 — I want to know if the site is live, the phone matches, and whether they check out.

## When to prefer this

Choose this endpoint when you need real-time, multi-signal verification of a specific business's legitimacy — especially when you have a name, website, or phone number to cross-check. It goes beyond static directory lookups by actively probing the business's web presence and contact info at call time. Prefer this over a simple directory search when fraud risk, vendor due diligence, or trust scoring is the goal.

## Known failure modes

- Business not found in directory — returns low score or no match
- Website unreachable or returning errors — noted in evidence, lowers score
- Phone number not found on site — flagged in evidence
- Domain too new or suspicious — flagged with low domain age score
- Invalid input (missing all identifiers) — returns 400 or empty result
- Phone format invalid for the given country — flagged in evidence

## How this service works

Is this business real, and is its contact info live? Give an id, website, phone or name: matches it against the directory and runs live checks now (site up, name on site, phone on site, domain age, phone format). Returns evidence, score and verdict.

## Output

Returns a structured response containing a verification score (0–100), a pass/fail verdict, and detailed evidence including: whether the website is reachable, whether the business name appears on the site, whether the phone number appears on the site, the domain age, and phone number format validity.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "id": {
       "type": "string",
       "maxLength": 120,
       "description": "Business id from search (re-runs live checks now)"
      },
      "city": {
       "type": "string",
       "maxLength": 80
      },
      "name": {
       "type": "string",
       "maxLength": 200
      },
      "phone": {
       "type": "string",
       "maxLength": 40
      },
      "address": {
       "type": "string",
       "maxLength": 300
      },
      "country": {
       "type": "string",
       "maxLength": 2,
       "minLength": 2
      },
      "website": {
       "type": "string",
       "maxLength": 300
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "ms": {
       "type": "integer"
      },
      "ok": {
       "type": "boolean"
      },
      "tool": {
       "type": "string"
      },
      "result": {
       "type": "object",
       "properties": {
        "verdict": {
         "type": "string"
        },
        "liveChecks": {
         "type": "object",
         "properties": {
          "level": {
           "type": "string"
          },
          "score": {
           "type": "integer"
          },
          "evidence": {
           "type": "array",
           "items": {
            "type": "object",
            "properties": {
             "value": {
              "type": "integer"
             },
             "signal": {
              "type": "string"
             },
             "weight": {
              "type": "integer"
             }
            }
           }
          }
         }
        },
        "inDirectory": {
         "type": "boolean"
        }
       }
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "verdict": "Not in directory; live checks scored 45/100",
  "liveChecks": {
   "level": "listed",
   "score": 45,
   "evidence": [
    {
     "value": 200,
     "signal": "website_live",
     "weight": 20
    }
   ]
  },
  "inDirectory": false
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/toll402-business-verifier-01848dc8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from toll402.dev](https://www.zero.xyz/host/toll402.dev/llms.txt)
