# LUMI Launch Digest

> LUMI Launch Digest is a paid API for AI agents from app.tenna.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns a descriptive statistical digest of token launches observed within a time window, including count, median terminal multiple, failure rates, and launchpad breakdown.

## Facts

- Endpoint: POST https://app.tenna.ai/api/x402/lumi/lumi_launch_digest
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/lumi-launch-digest-bfc1de0e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dK7jTk3_wm7ShnDHUMewQ

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-launch-digest-bfc1de0e -d '<json body>'
```

Example prompt: Give me the LUMI launch digest for all token cohorts over the last 7 days — I want the count, median terminal multiple, and how many crashed below -70% or -90%.

## When to prefer this

Choose this endpoint when you need a quick factual aggregate view of token launch activity and quality over a defined time window, segmented by cohort type. It is ideal for monitoring memecoin or virtual-quoted launch trends, assessing failure rates, or building periodic market reports. Prefer this over individual token endpoints when you want population-level statistics rather than per-token details.

## Known failure modes

- Invalid cohort value (not memecoin/virtual_quoted/all) returns validation error
- Invalid window value (not 24h/7d/30d) returns validation error
- Offering field not set to exactly 'lumi_launch_digest' causes rejection
- Payment failure via x402 protocol blocks the call
- No data available for the requested window may return empty or null digest

## How this service works

Descriptive digest of token launches observed in a time window: count, median terminal multiple, share that ended below -70%/-90%, and the launchpads involved. Facts already observed on chain — not a forecast and not a trading signal.

## Output

A statistical summary of token launches observed on-chain within the requested window, including total launch count, median terminal multiple, the share of launches that ended below -70% and -90% from peak, and a breakdown of launchpads involved. Data reflects historical on-chain observations and is explicitly not a forecast or trading signal.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "cohort": {
   "enum": [
    "memecoin",
    "virtual_quoted",
    "all"
   ],
   "type": "string",
   "description": "Launch cohort, or 'all'."
  },
  "window": {
   "enum": [
    "24h",
    "7d",
    "30d"
   ],
   "type": "string",
   "description": "Look-back window."
  },
  "offering": {
   "type": "string",
   "const": "launch_digest",
   "description": "Offering identifier. Must be exactly 'launch_digest'."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/lumi-launch-digest-bfc1de0e/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)
