# LION — Provable Company Files for Compliance & Due Diligence (scrape-json)

> LION — Provable Company Files for Compliance & Due Diligence (scrape-json) is a paid API for AI agents from lionx402.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Fetches and returns a cryptographically-attested, tamper-evident company dossier combining firmographics, SEC financials, VAT validation, OFAC sanctions screening, and domain trust signals into a structured JSON with per-field source provenance.

## Facts

- Endpoint: GET https://lionx402.com/api/x402/scrape-json
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/lion-provable-company-files-for-compliance-due-diligence-scrape-json-48926ab5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-y2UkgJgKyJW9hLTx12Yc

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-provable-company-files-for-compliance-due-diligence-scrape-json-48926ab5
```

Example prompt: Pull a provable compliance dossier for stripe.com — I need their firmographics, SEC financials, OFAC sanctions status, and VAT validation, all with cryptographic source attestation so I can use it for KYC onboarding.

## When to prefer this

Choose this endpoint when you need a single, verifiable compliance dossier that combines multiple regulatory data sources (SEC, OFAC, VAT, firmographics) with cryptographic attestation in one call. Prefer it over general web scrapers when auditability, tamper-evidence, and per-field source provenance are required — e.g. for KYC/AML onboarding, vendor due diligence, or counterparty screening workflows where regulators or auditors may review the data.

## Known failure modes

- Company URL not found or unreachable — returns error status
- Company has no SEC filing data — partial dossier returned without financials
- VAT number not resolvable for the given domain — VAT field empty or flagged
- OFAC screening service timeout — sanctions status may be missing
- Invalid or malformed URL input — returns 400-level error
- Domain has no trust signals — domain trust field absent or low-confidence

## How this service works

Keyless attested web scrape: ?url= → { title, markdown, word_count }. $0.02 Base USDC (agent scrape band).

## Output

Returns a JSON object containing the company URL, page title, a status indicator, a unique asset ID (e.g. LION_SCRAPE_001), a full markdown-formatted compliance dossier covering firmographics/SEC/VAT/OFAC/domain trust data, and a word count. Each field includes a per-field source trail and the entire dossier is cryptographically attested for offline verification.

## 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": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "description": "Absolute http(s) URL"
      }
     }
    }
   },
   "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-provable-company-files-for-compliance-due-diligence-scrape-json-48926ab5/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)
