# LION x402 Verified Company File (JSON)

> LION x402 Verified Company File (JSON) is a paid API for AI agents from lion-x402-bible.lionmaster-operations.workers.dev, paid per call via x402, $0.95/call, status unknown (last checked 2026-09-14).

Returns an attested, verified company data file in JSON format for a given domain, paid via x402 USDC micropayment on Base.

## Facts

- Endpoint: GET https://lion-x402-bible.lionmaster-operations.workers.dev/api/x402/verified-company-file-json
- Price: $0.95/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/lion-x402-verified-company-file-json-78482fd3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4zIOa0dCdsP8HvuZQ3zpv

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-x402-verified-company-file-json-78482fd3
```

Example prompt: Can you pull the verified company file for stripe.com — I need the attested JSON record that confirms it's a real, resolved business entity?

## When to prefer this

Choose this endpoint when an autonomous agent needs keyless, attested company data without managing traditional API credentials, and when you want to pay per-call in USDC on Base via the x402 protocol. It is best suited for agents that need a verifiable, on-chain-payment-gated source of company identity data rather than a conventional REST API with OAuth or API keys.

## Known failure modes

- Domain not found or not yet attested — resolved returns false
- Payment failure via x402 — request rejected before data is returned
- Invalid or malformed domain input — API returns an error or empty record
- Network/worker timeout — Cloudflare Worker fails to respond in time
- Unresolvable domain — domain exists but has no verified company file on record

## How this service works

Keyless attested data for autonomous agents. USDC on Base via x402. Official @x402/* middleware.

## Output

A JSON object containing the domain queried, a LION asset ID (e.g. LION_VERIFIED_COMPANY_FILE_001), and a resolved boolean indicating whether the company verification was successfully attested and returned.

## 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": [
      "domain"
     ],
     "properties": {
      "domain": {
       "type": "string",
       "description": "Company website domain e.g. stripe.com (not a full URL)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "domain": "stripe.com",
  "asset_id": "LION_VERIFIED_COMPANY_FILE_001",
  "resolved": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/lion-x402-verified-company-file-json-78482fd3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from lion-x402-bible.lionmaster-operations.workers.dev](https://www.zero.xyz/host/lion-x402-bible.lionmaster-operations.workers.dev/llms.txt)
