# KYB Composite Due Diligence (OFAC + GLEIF + SEC EDGAR)

> KYB Composite Due Diligence (OFAC + GLEIF + SEC EDGAR) is a paid API for AI agents from pyfile-agent.taile3ff35.ts.net, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-13).

Runs a composite Know Your Business check on a company by querying OFAC SDN sanctions, GLEIF LEI registry, and SEC EDGAR in a single call, returning a unified risk verdict.

## Facts

- Endpoint: GET https://pyfile-agent.taile3ff35.ts.net/data/kyb
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/kyb-composite-due-diligence-ofac-gleif-sec-edgar-919eee09
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_M3q5WYDGwwDEOBOEMJzH5

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 kyb-composite-due-diligence-ofac-gleif-sec-edgar-919eee09
```

Example prompt: Can you run a full KYB check on 'Acme Trading Ltd' — I need to know if they're on the OFAC sanctions list, whether they have a GLEIF LEI, and if they appear in SEC EDGAR, and give me an overall verdict?

## When to prefer this

Choose this endpoint when you need a one-call composite KYB verdict combining OFAC sanctions, GLEIF LEI, and SEC EDGAR data rather than querying each registry separately. Ideal for compliance automation workflows where speed and data aggregation matter more than deep per-registry pagination. Prefer over individual OFAC or GLEIF endpoints when you need all three data sources and a synthesized risk verdict in a single response.

## Known failure modes

- Company name not found in any registry — returns empty sub-objects with verdict 'clear' or 'review'
- Ambiguous name matches multiple entities — may return multiple candidates or prompt for disambiguation
- OFAC/GLEIF/SEC upstream API timeout — partial results returned with missing sub-objects
- Missing or empty 'name' query parameter — returns 400 or error response
- Name with special characters or non-Latin script may not match registry records reliably

## How this service works

KYB / KYC company screening and sanctions check in one call: OFAC SDN sanctions screening + GLEIF Legal Entity Identifier (LEI) + SEC EDGAR filings, with a composite clear/review verdict. Know Your Business due diligence on any company name. ?name=Company

## Output

Returns a JSON object with the company name, a sanctions sub-object (OFAC SDN match details), an LEI sub-object (GLEIF legal entity data), a SEC sub-object (EDGAR filings/registration data), a sources array listing which registries were queried, and a top-level verdict enum of 'clear', 'review', or 'blocked'.

## 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": {
      "name": {
       "type": "string"
      }
     }
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "lei": {
     "type": "object"
    },
    "sec": {
     "type": "object"
    },
    "name": {
     "type": "string"
    },
    "sources": {
     "type": "array",
     "items": {
      "type": "string"
     }
    },
    "verdict": {
     "enum": [
      "clear",
      "review",
      "blocked"
     ],
     "type": "string"
    },
    "sanctions": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/kyb-composite-due-diligence-ofac-gleif-sec-edgar-919eee09/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from pyfile-agent.taile3ff35.ts.net](https://www.zero.xyz/host/pyfile-agent.taile3ff35.ts.net/llms.txt)
