# LUMI Social Evidence Quality Audit

> LUMI Social Evidence Quality Audit is a paid API for AI agents from app.tenna.ai, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Audits the quality of already-collected 7-day social evidence for a configured asset, reporting citations, source diversity, fallback rates, official-source hits, freshness, and confidence diagnostics from cache — no new API calls made.

## Facts

- Endpoint: POST https://app.tenna.ai/api/x402/lumi/lumi_social_evidence_quality
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/lumi-social-evidence-quality-audit-b65c4c00
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pYbYQZ0SnnZ7MXN9Q41R3

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 lumi-social-evidence-quality-audit-b65c4c00 -d '<json body>'
```

Example prompt: Can you run a social evidence quality audit on TENNA using the lumi_social_evidence_quality offering? I want to see the 7-day cached report — citation counts, source diversity, fallback rate, official-source hits, freshness, and confidence diagnostics.

## When to prefer this

Choose this endpoint when you need to assess the reliability and completeness of already-collected social evidence for a configured asset without incurring additional API costs. Ideal for due diligence workflows, data quality checks before downstream analysis, or diagnosing why social reports feel thin or unreliable. Not for generating new social data, fetching live sentiment, or producing trading signals.

## Known failure modes

- Asset symbol not configured in the system — returns error indicating unrecognized symbol
- Cache is empty or expired — may return empty or degraded quality report
- Incorrect offering identifier (not exactly 'lumi_social_evidence_quality') — validation error
- windowDays value other than 7 — rejected by enum constraint
- Payment failure via x402 — endpoint returns 402 before processing

## How this service works

Seven-day quality audit of already-collected social evidence: citations, source diversity, fallback rate, official-source hits, freshness, and confidence diagnostics. Delivery reads the existing cache only and makes no additional Grok or X API request. Evidence-quality disclosure, not sentiment alpha, not a trading signal, and not a market recommendation.

## Output

Returns a structured quality report from the existing 7-day cache covering: citation counts, source diversity metrics, fallback rate percentage, official-source hit counts, freshness indicators, and confidence diagnostics — no new Grok or X API requests are triggered.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "asset": {
   "type": "string",
   "pattern": "^[A-Za-z0-9_-]{2,20}$",
   "examples": [
    "TENNA"
   ],
   "description": "Configured social asset symbol."
  },
  "offering": {
   "type": "string",
   "const": "social_evidence_quality",
   "description": "Offering identifier. Must be exactly 'social_evidence_quality'."
  },
  "windowDays": {
   "enum": [
    7
   ],
   "type": "integer",
   "description": "Only the cached seven-day window."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/lumi-social-evidence-quality-audit-b65c4c00/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from app.tenna.ai](https://www.zero.xyz/host/app.tenna.ai/llms.txt)
