# TENNA Launch Intelligence – Survival Screen

> TENNA Launch Intelligence – Survival Screen 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).

Runs a nine-criterion durability checklist against a Robinhood Chain meme token launch to assess whether it has the structural characteristics of a survivor.

## Facts

- Endpoint: POST https://app.tenna.ai/api/x402/tenna/survival_screen
- 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/tenna-launch-intelligence-survival-screen-5e8d94e9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_G2B-nCY_3tRGyKTyGaSCF

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 tenna-launch-intelligence-survival-screen-5e8d94e9 -d '<json body>'
```

Example prompt: Can you run the TENNA survival screen on this Robinhood Chain token at 0x1234567890abcdef1234567890abcdef12345678 — I want to see all nine durability criteria and which mandatory ones it passes?

## When to prefer this

Use this endpoint when you need a fast, structured nine-point durability checklist for a single Robinhood Chain meme token launch before committing capital. Prefer it over general token analytics when you specifically need mandatory-criteria flagging, holder concentration and airdrop inflation signals, and deployer record in one call. It is not a return predictor — use it as a structural filter, not a buy signal.

## Known failure modes

- Unsupported chain value (only 'robinhood' accepted) returns a validation error
- Invalid or malformed token address (not matching ^0x[a-fA-F0-9]{40}$) returns a schema error
- Incorrect offering identifier (must be exactly 'survival_screen') causes rejection
- Token address not found on Robinhood Chain may return empty or null criteria data
- Payment failure or insufficient USDC balance causes x402 payment error before processing
- Rate limiting or API downtime may return 5xx errors

## How this service works

Launch Survival Screen. Durability checklist for a surviving launch: nine criteria (survival, real holders, concentration, airdrop inflation, holder growth, liquidity, recency, deployer record, sell execution). Four are mandatory and are named in the result as mandatoryCriteria, so which ones they are is never left to inference. UNVALIDATED screener — passing has not been shown to predict returns.

## Output

Returns a structured pass/fail result across nine durability criteria covering survival, real holders, concentration, airdrop inflation, holder growth, liquidity, recency, deployer record, and sell execution. Four criteria are designated mandatory and are explicitly named in the response as mandatoryCriteria. The result is clearly labeled as an unvalidated screener with no predictive claim on returns.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "chain": {
   "enum": [
    "robinhood"
   ],
   "type": "string",
   "description": "Only 'robinhood' is supported in this pilot."
  },
  "offering": {
   "type": "string",
   "const": "survival_screen",
   "description": "Offering identifier. Must be exactly 'survival_screen'."
  },
  "tokenAddress": {
   "type": "string",
   "pattern": "^0x[a-fA-F0-9]{40}$",
   "examples": [
    "0x0000000000000000000000000000000000000000"
   ],
   "description": "20-byte EVM token address."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tenna-launch-intelligence-survival-screen-5e8d94e9/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)
