# LION Verified Company Enrichment

> LION Verified Company Enrichment is a paid API for AI agents from lionx402.com, paid per call via x402, $0.04/call, status unknown (last checked 2026-09-15).

Returns firmographic data (name, employees, country, industry, website, description) for a company identified by domain or name, with Ed25519 attestation and keyless x402 payment.

## Facts

- Endpoint: GET https://lionx402.com/api/x402/company-enrich
- Price: $0.04/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/lion-verified-company-enrichment-8a07c7a2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DDvFAnQ6Av2GO8u2YlPul

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 lion-verified-company-enrichment-8a07c7a2
```

Example prompt: Can you pull up the firmographic details for stripe.com — I need the company name, number of employees, country, industry, and a brief description?

## When to prefer this

Choose this endpoint when you need basic firmographic data (name, employees, country, industry, website, description) for a company identified by domain or name, especially when you want keyless x402 micropayment access without pre-registration or API keys. Prefer it over general-purpose enrichment APIs when Ed25519 attestation of the result is important for auditability or downstream trust verification.

## Known failure modes

- Unknown or ambiguous identifier returns empty or low-confidence result
- Private or very small companies may have incomplete firmographic data
- Payment failure if x402 wallet has insufficient USDC balance
- Invalid identifier format returns a 400 error
- Rate limiting or upstream data source unavailability causes transient failures

## How this service works

Org enrich / company enrichment by domain or name. Firmographics pack: name, employees, country, industry, website. $0.04 keyless x402. Apollo-shaped optional (format=apollo_org). ?identifier=stripe.com

## Output

A firmographic data object containing the company's official name, estimated employee count, headquarters country, industry classification, website URL, and a brief company description, all cryptographically attested with an Ed25519 signature for verifiability.

## 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",
     "required": [
      "identifier"
     ],
     "properties": {
      "domain": {
       "type": "string"
      },
      "fields": {
       "type": "string",
       "description": "Comma-separated fields"
      },
      "format": {
       "type": "string",
       "description": "apollo_org for drop-in shape"
      },
      "identifier": {
       "type": "string",
       "description": "Company name or domain"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "service": "LION Verified Company",
  "asset_id": "LION",
  "resolved": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/lion-verified-company-enrichment-8a07c7a2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from lionx402.com](https://www.zero.xyz/host/lionx402.com/llms.txt)
