# entities.recordsforagents.com Business/Person Name Fuzzy Verification

> entities.recordsforagents.com Business/Person Name Fuzzy Verification is a paid API for AI agents from entities.recordsforagents.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Fuzzy-matches a business or person name against FL and CO Secretary of State business registry records, returning scored candidate matches with registry status, entity number, and formation date.

## Facts

- Endpoint: GET https://entities.recordsforagents.com/entities/verify
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/entities-recordsforagents-com-business-person-name-fuzzy-verification-68d14ae8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iN9KkLJCGZA7hVQHymeBg

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 entities-recordsforagents-com-business-person-name-fuzzy-verification-68d14ae8
```

Example prompt: Can you fuzzy-check whether 'Sunshine Roofing LLC' is registered as a business in Florida — return the top 3 matches with their registry status and formation dates?

## When to prefer this

Use this endpoint when you need fuzzy name-matching against official Secretary of State business registry data for Florida or Colorado — especially when the exact spelling of a business name is uncertain. Prefer this over exact registry-number lookup when you only have a name, not a registration number. Prefer this over full-text search when you want scored, ranked name-match candidates rather than broad keyword results. Ideal for KYC, vendor due diligence, contract validation, or compliance workflows where confirming legal registration status matters.

## Known failure modes

- Name not found in registry — returns empty candidates list
- Invalid jurisdiction value (only 'fl' or 'co' accepted) — returns 400 error
- Missing required 'name' query parameter — returns 400 validation error
- min_score threshold too high — filters out all candidates, returning empty list
- Payment not processed or insufficient — returns 402 Payment Required
- Registry data temporarily unavailable — returns 503 or timeout

## How this service works

Fuzzy-verify a business or person name against state Secretary of State business registry records (FL, CO); returns scored candidate matches with registry status, number, and formation date.

## Output

A list of scored candidate business or person name matches from the FL or CO Secretary of State registry, each including the entity name, match confidence score, registry status (e.g., active/inactive), official entity/document number, and formation date.

## 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",
     "required": [
      "name"
     ],
     "properties": {
      "name": {
       "type": "string"
      },
      "limit": {
       "type": "integer"
      },
      "min_score": {
       "type": "number"
      },
      "jurisdiction": {
       "enum": [
        "fl",
        "co"
       ],
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/entities-recordsforagents-com-business-person-name-fuzzy-verification-68d14ae8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from entities.recordsforagents.com](https://www.zero.xyz/host/entities.recordsforagents.com/llms.txt)
