# IntelGeist Company Intelligence API

> IntelGeist Company Intelligence API is a paid API for AI agents from api.intelgeist.ai, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-19).

Returns a company risk profile, sanctions screen, ownership structure, and status data from public records (GLEIF, SEC EDGAR, OFAC, UK/EU sanctions) for a single company identified by LEI, CIK, or domain.

## Facts

- Endpoint: POST https://api.intelgeist.ai/x402/company/profile
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-19
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/intelgeist-company-intelligence-api-0bf23ec4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_L9HDl89EYm15iv5dlTPQU

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 intelgeist-company-intelligence-api-0bf23ec4 -d '<json body>'
```

Example prompt: Can you pull up the compliance risk profile for Apple Inc. — use their LEI HWUPKR0MPOU8FGXBT394 — and tell me if they appear on any OFAC, UK, or EU sanctions lists, and show me their direct subsidiaries?

## When to prefer this

Choose this endpoint when you need a single-call enrichment combining sanctions screening, risk rating, corporate status, and ownership data for a company entity — especially when you have a LEI, SEC CIK, or company domain. Prefer this over building separate queries to GLEIF, EDGAR, and OFAC directly when you want a pre-aggregated risk view. Ideal for KYB (Know Your Business) workflows, vendor onboarding, counterparty screening, and compliance automation where per-call pricing at $0.25 USDC is acceptable. Not suitable for person/individual screening or bulk batch screening of thousands of entities at once.

## Known failure modes

- No identifier provided (cik, lei, or domain required): returns unresolved result or 400 error
- Company not found in any registry: resolved=false with empty data
- Invalid LEI format (must be exactly 20 alphanumeric characters): validation error
- Invalid CIK format (must be numeric, up to 10 digits): validation error
- Company exists but no sanctions data available for that jurisdiction: empty sanctions_screen array
- Payment not processed via x402/USDC: 402 Payment Required response
- Rate limiting or quota exceeded: 429 Too Many Requests
- Stale data: as_of timestamp may lag real-time registry updates by hours or days

## How this service works

Company risk profiles and data fragments from public records (GLEIF, SEC EDGAR, OFAC, UK and EU sanctions, state registries), sold per call over x402 in USDC on Base. Companies only; no person data.

## Output

A JSON object containing: resolved entity status (true/false), canonical company name, jurisdiction, registration status (active/inactive), a risk rating (LOW/MEDIUM/HIGH) with basis, a sanctions screen array (empty if clear), ownership structure including direct children count and ultimate children total, match score and method used for entity resolution, schema version, and terms notice. All data is sourced from GLEIF, SEC EDGAR, OFAC, and UK/EU sanctions registries as of the as_of timestamp.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "cik": {
   "type": "string",
   "pattern": "^[0-9]{1,10}$"
  },
  "lei": {
   "type": "string",
   "pattern": "^[A-Z0-9]{20}$"
  },
  "domain": {
   "type": "string",
   "pattern": "^(?=.{4,253}$)([a-z0-9-]{1,63}\\.)+[a-z]{2,63}$"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "org": {
   "as_of": "2026-09-13T16:00:00+00:00",
   "source": "gleif_l1",
   "status": "active",
   "jurisdiction": "US-CA",
   "canonical_name": "Apple Inc."
  },
  "risk": {
   "rating": "LOW",
   "rating_basis": "IntelGeist v1 factor rules; informational only, see notice"
  },
  "match": {
   "score": 1,
   "method": "identifier_exact:LEI"
  },
  "notice": {
   "terms_url": "https://api.intelgeist.ai/terms",
   "terms_version": "2026-09-13"
  },
  "resolved": true,
  "ownership": {
   "children_total": 20,
   "direct_children": [
    {
     "kind": "direct_child",
     "source": "gleif_rr",
     "canonical_name": "APPLE CANADA INC."
    }
   ],
   "direct_children_total": 8,
   "ultimate_children_total": 20
  },
  "schema_version": "intelgeist.company_profile.v2",
  "sanctions_screen": []
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/intelgeist-company-intelligence-api-0bf23ec4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.intelgeist.ai](https://www.zero.xyz/host/api.intelgeist.ai/llms.txt)
