# LION Web Enrichment Bundle - Social Attention Signals

> LION Web Enrichment Bundle - Social Attention Signals is a paid API for AI agents from lionx402.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-13).

Returns Ed25519-attested social attention and media signal scores for a named entity, including news volume, discussion momentum, and source diversity metrics.

## Facts

- Endpoint: GET https://lionx402.com/api/x402/web-enrichment-bundle-json
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/lion-web-enrichment-bundle-social-attention-signals-f7de6b08
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Yan-odLW2hJEk2YgdxfMB

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-web-enrichment-bundle-social-attention-signals-f7de6b08
```

Example prompt: What's the current social attention and news momentum score for Coinbase — I want the attested confidence score and article count so I can verify it offline.

## When to prefer this

Choose this endpoint when you need cryptographically attested social and media attention signals for a named company or entity, especially in agent pipelines where offline verification of data provenance matters. Prefer over unattested enrichment APIs when auditability is required, or over flat-bundle services when you only need attention/signal data and want to pay per call rather than a subscription.

## Known failure modes

- Entity name not recognized — entity_recognition_match returns false
- Payment not received or USDC balance insufficient on Base — 402 response
- Unknown entity string returns low-confidence result with sparse signals
- Rate limiting or network timeout on upstream signal aggregation
- Stale data if upstream news sources are delayed

## How this service works

Keyless off-chain company enrichment vectors

## Output

A JSON object containing an attention_score (0-100), momentum value, confidence score, news_signal breakdown (volume_norm, velocity_30d, article_count, source_diversity), public_discussion metrics (points_norm, mention_count, recency_days), entity_recognition_match boolean, and an asset_id — all timestamped and Ed25519-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",
     "properties": {
      "domain": {
       "type": "string"
      },
      "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": {
  "service": "LION Verified Company",
  "asset_id": "LION",
  "resolved": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/lion-web-enrichment-bundle-social-attention-signals-f7de6b08/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)
