# Entity Records Full-Text Search (OFAC + State Registries)

> Entity Records Full-Text Search (OFAC + State Registries) is a paid API for AI agents from entities.recordsforagents.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Full-text search across OFAC sanctions lists and state business registries (FL, CO) by free-text query, with optional jurisdiction and status filters.

## Facts

- Endpoint: GET https://entities.recordsforagents.com/entities/search
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/entity-records-full-text-search-ofac-state-registries-231c653a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BL0pzlbx_6ikgM2JaP9K7

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 entity-records-full-text-search-ofac-state-registries-231c653a
```

Example prompt: Search all entity records — OFAC sanctions and state registries — for 'Meridian Global Trading' and limit results to 10, scoping the search to Florida.

## When to prefer this

Use this endpoint when you need a broad free-text search across multiple entity data sources simultaneously — combining OFAC sanctions and state registries — rather than an exact ID lookup or name-specific fuzzy match. Ideal for exploratory searches, keyword-driven queries, or when you don't know the exact entity ID or precise name spelling.

## Known failure modes

- Missing required 'q' parameter returns a 400 validation error
- Invalid jurisdiction value (not 'ofac', 'fl', or 'co') returns a 400 error
- No matching records returns an empty result set
- Payment failure (x402) returns a 402 Payment Required response
- Overly broad queries may return large result sets requiring pagination

## How this service works

Full-text search across all entity records (OFAC sanctions + state registries) by free-text query, optionally scoped to a jurisdiction or status.

## Output

A list of matching entity records drawn from OFAC sanctions lists (SDN + Consolidated) and/or state business registries (Florida, Colorado), each containing entity name, jurisdiction, status, and relevant registry or sanctions identifiers, paginated by limit and offset.

## 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": [
      "q"
     ],
     "properties": {
      "q": {
       "type": "string"
      },
      "limit": {
       "type": "integer"
      },
      "offset": {
       "type": "integer"
      },
      "status": {
       "type": "string"
      },
      "jurisdiction": {
       "enum": [
        "ofac"
       ],
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/entity-records-full-text-search-ofac-state-registries-231c653a/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)
