# LION Keyless Attested Company Enrichment API

> LION Keyless Attested Company Enrichment API 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 pay-per-field company firmographics and related data, Ed25519-attested for offline verification, paid per call in USDC via x402 on Base

## Facts

- Endpoint: GET https://lionx402.com/api/x402/enrich-v1-json
- 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-keyless-attested-company-enrichment-api-927c7112
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dgTcQ_PMPcQcMXvPQqm0S

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-keyless-attested-company-enrichment-api-927c7112
```

Example prompt: Look up the country, industry, and founding year for Coinbase — I need attested firmographic data I can trust, just those three fields.

## When to prefer this

Prefer this endpoint when you need selective company firmographic fields rather than a full bundle, want offline-verifiable Ed25519 attestations on each field, need to pay only for what you actually use, or require no API key registration. Best for AI agents operating autonomously that need cryptographically attested business data.

## Known failure modes

- Unknown company identifier returns empty fields or low-confidence results
- Insufficient USDC balance on Base causes payment failure and no data returned
- Requesting unsupported field names returns an error or omits those fields
- Network or blockchain payment confirmation delay causes timeout
- Malformed company name yields no match

## How this service works

Company/org enrichment pack $0.04 — name, employees, country, industry, website (Wikidata+SEC). Aliases: /company-enrich /org-enrich. Keyless. format=apollo_org. Upsell verified company file $0.95.

## Output

A JSON object with per-field results including value, source, confidence score, and as-of timestamp for each requested firmographic field, plus Ed25519 attestation metadata, total USDC cost, and asset ID. Fields are drawn from Wikidata, SEC EDGAR, or other cited open sources.

## 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": {
      "fields": {
       "type": "string",
       "description": "Comma-separated field names"
      },
      "format": {
       "type": "string",
       "description": "optional apollo_org"
      },
      "identifier": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "type": "company",
  "as_of": "2026-06-03T00:00:00.000Z",
  "price": {
   "fields": 3,
   "total_usdc": "0.006000",
   "per_field_usdc": "0.002"
  },
  "fields": {
   "country": {
    "as_of": "2026-06-03T00:00:00.000Z",
    "value": "United States of America",
    "source": "Wikidata (CC0)",
    "confidence": 0.9
   },
   "industry": {
    "as_of": "2026-06-03T00:00:00.000Z",
    "value": [
     "cryptocurrency exchange",
     "financial technology"
    ],
    "source": "Wikidata (CC0)",
    "confidence": 0.9
   },
   "description": {
    "as_of": "2026-06-03T00:00:00.000Z",
    "value": "American cryptocurrency exchange company",
    "source": "Wikidata (CC0)",
    "confidence": 0.85
   },
   "inception_year": {
    "as_of": "2026-06-03T00:00:00.000Z",
    "value": 2012,
    "source": "Wikidata (CC0)",
    "confidence": 0.9
   }
  },
  "asset_id": "LION_ENRICH_V1_001",
  "identifier": "Coinbase",
  "fields_returned": 3,
  "fields_requested": [
   "inception_year",
   "country",
   "industry"
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/lion-keyless-attested-company-enrichment-api-927c7112/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)
