# LedgerCore KYE Report

> LedgerCore KYE Report is a paid API for AI agents from api.ledgercore.io, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-13).

Returns a comprehensive Know Your Exchange (KYE) institutional profile for a named blockchain/crypto entity, including aliases, executives, licenses, timeline, risk assessments, and locations.

## Facts

- Endpoint: POST https://api.ledgercore.io/api/v1/x402/kye/report
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ledgercore-kye-report-c5fdf3f1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BbGrQ3ASUELC0qjcKqgk_

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 ledgercore-kye-report-c5fdf3f1 -d '<json body>'
```

Example prompt: Pull the full LedgerCore KYE report for Binance — I need their executives, regulatory licenses, risk assessments, and any known aliases.

## When to prefer this

Use this endpoint when you need a comprehensive institutional compliance and intelligence profile for a named crypto exchange or blockchain entity, including regulatory licensing, executive structure, risk scores, and historical timeline — especially in compliance, due diligence, or institutional onboarding workflows where structured KYE data is required.

## Known failure modes

- Entity name not found — no top match returned
- Ambiguous entity name matches wrong organization
- Payment not accepted — x402 payment failure
- Missing required 'name' field returns validation error
- Rate limiting or API quota exceeded

## How this service works

LedgerCore is the institutional blockchain intelligence platform. One unified API with targeted portals for market data, treasury, compliance, and asset integrity.

## Output

Returns a structured KYE entity profile containing the matched entity's canonical name and ID, known aliases, executive personnel, regulatory licenses, compliance timeline, risk assessment scores, and registered locations. Also returns payment confirmation metadata including the resolved entity ID, price paid, token, and network.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "name": {
   "type": "string",
   "minLength": 2,
   "description": "Entity name to look up (e.g. \"Binance\", \"Luno\"). Top match is returned."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "entity": {
    "name": "Binance",
    "type": "cex"
   }
  },
  "x402": {
   "price": "0.10",
   "token": "USDC",
   "network": "base",
   "resource": "kye_report",
   "resolvedEntity": {
    "entityId": 42,
    "entityName": "Binance"
   },
   "paymentAccepted": true
  },
  "success": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ledgercore-kye-report-c5fdf3f1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.ledgercore.io](https://www.zero.xyz/host/api.ledgercore.io/llms.txt)
