# IntelGeist Company Status API

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

Returns a company risk profile including registration status, sanctions screening, LEI data, and anomaly flags sourced from GLEIF, SEC EDGAR, OFAC, UK/EU sanctions lists, and state registries

## Facts

- Endpoint: POST https://api.intelgeist.ai/x402/company/status
- Price: $0.02/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-status-api-c36f7994
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_a2hxhG0CKRqkdb7IgBNta

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-status-api-c36f7994 -d '<json body>'
```

Example prompt: Can you pull the company status and sanctions screening for Apple Inc. using their domain apple.com — I want to know if they're in good standing, flagged on any sanctions lists, and what their LEI registration looks like?

## When to prefer this

Prefer this endpoint when you need a fast, per-call, pay-as-you-go company risk lookup aggregating GLEIF, SEC EDGAR, OFAC, and EU/UK sanctions data without a subscription. It is especially suited for agents performing one-off vendor screening, counterparty due diligence, or compliance checks against multiple authoritative public record sources simultaneously. Best used when you already have a domain name, LEI, or SEC CIK as an identifier.

## Known failure modes

- No match found if the domain, CIK, or LEI does not resolve to a known entity
- Ambiguous match if the domain maps to multiple legal entities, resulting in a lower confidence score
- Stale data if underlying public registries have not been recently updated
- Payment failure if the x402 USDC payment on Base is not completed correctly
- Invalid input if CIK format, LEI format, or domain pattern does not match schema validation

## 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: the resolved company's legal name and match confidence score, company formation date, jurisdiction, active/dissolved status, LEI registration status and date, a list of state registry records with good-standing status, and an anomaly/sanctions screening result indicating whether any flags were found across OFAC, UK, and EU sanctions lists.

## 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": {
  "notice": {
   "terms_url": "https://api.intelgeist.ai/terms",
   "terms_version": "2026-09-13"
  },
  "status": {
   "company": {
    "status": "active",
    "formed_on": "1977-01-03",
    "dissolved_on": null,
    "jurisdiction": "US-CA"
   },
   "anomalies": {
    "id": "status_registration_anomalies",
    "result": "no_flags_found"
   },
   "registrations": [
    {
     "source": "us_co",
     "status": "Good Standing",
     "registry": "US-CO-SOS",
     "registry_id": "19871422707"
    }
   ],
   "lei_registration": {
    "lei": "HWUPKR0MPOU8FGXBT394",
    "status": "ISSUED",
    "status_as_of": "2026-03-03"
   }
  },
  "resolved": {
   "match": {
    "score": 1,
    "method": "domain_exact"
   },
   "legal_name": "Apple Inc."
  },
  "schema_version": "intelgeist.company_status.v1"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/intelgeist-company-status-api-c36f7994/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)
