# DopamineDesk Legal Entity Verification API

> DopamineDesk Legal Entity Verification API is a paid API for AI agents from ai-data-marketplace-1042299154756.us-central1.run.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Verifies a legal entity's identity by running GLEIF LEI registry lookups, OFAC sanctions screening, and optional SEC evidence checks, returning a consolidated conclusion.

## Facts

- Endpoint: GET https://ai-data-marketplace-1042299154756.us-central1.run.app/api/v1/legal_entity_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/dopaminedesk-legal-entity-verification-api-08d7af80
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_EXhBiKa2ndUJpHT-qpeFF

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 dopaminedesk-legal-entity-verification-api-08d7af80
```

Example prompt: Can you verify the legal entity 'Acme Global Holdings LLC' — check their GLEIF registration, run an OFAC sanctions screen, and pull any SEC evidence using ticker ACME?

## When to prefer this

Choose this endpoint when you need a fast, consolidated legal entity due-diligence check that combines GLEIF registry data, OFAC sanctions screening, and optional SEC public company evidence in a single $0.01 USDC call. Prefer it over building separate API integrations with GLEIF, OFAC, and SEC EDGAR when you need a simple pass/fail or evidence-found conclusion for KYB or counterparty screening workflows.

## Known failure modes

- Neither name nor LEI provided — returns error requiring at least one identifier
- LEI does not match any GLEIF record — conclusion reflects no identity evidence found
- OFAC API unavailable — reduced checks_completed count returned
- Invalid LEI format (not 20 characters) — input validation error
- Name is too generic and returns too many GLEIF matches — use limit parameter to cap results
- SEC ticker not found — SEC evidence check skipped or returns empty

## How this service works

Combine GLEIF legal-entity identity, official OFAC SDN screening, and optional SEC filing identity into one sourced counterparty report.

## Output

Returns a JSON object with a boolean success flag, a conclusion string (e.g. 'identity_evidence_found'), and the number of checks completed (GLEIF lookup, OFAC screening, SEC evidence). May include additional detail fields about each check result.

## 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": {
      "lei": {
       "type": "string",
       "description": "Exact 20-character LEI; either name or LEI is required."
      },
      "name": {
       "type": "string",
       "description": "Legal name used for GLEIF and OFAC screening."
      },
      "limit": {
       "type": "integer",
       "description": "Maximum GLEIF matches from 1 to 10."
      },
      "ticker": {
       "type": "string",
       "description": "Optional public-company ticker for SEC evidence."
      }
     },
     "additionalProperties": true
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "success",
      "conclusion",
      "checks_completed"
     ],
     "properties": {
      "success": {
       "type": "boolean"
      },
      "conclusion": {
       "type": "string"
      },
      "checks_completed": {
       "type": "integer"
      }
     },
     "additionalProperties": true
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "success": true,
  "conclusion": "identity_evidence_found",
  "checks_completed": 3
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/dopaminedesk-legal-entity-verification-api-08d7af80/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from ai-data-marketplace-1042299154756.us-central1.run.app](https://www.zero.xyz/host/ai-data-marketplace-1042299154756.us-central1.run.app/llms.txt)
