# TENNA Launch Intelligence – T0 Price Path

> TENNA Launch Intelligence – T0 Price Path 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 minute-resolution price path data from pool creation (t0) for a Robinhood Chain token launch, including peak multiple, minutes to peak, terminal multiple, drawdown from peak, and buy fraction.

## Facts

- Endpoint: POST https://app.tenna.ai/api/x402/tenna/t0_price_path
- 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-t0-price-path-7fd94f5e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8sCzc3Ot083K6D0NYHAUD

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-t0-price-path-7fd94f5e -d '<json body>'
```

Example prompt: Pull the T0 price path for Robinhood Chain token 0x1234567890abcdef1234567890abcdef12345678 — I want to see the peak multiple, how many minutes it took to peak, the terminal multiple, drawdown from peak, and buy fraction.

## When to prefer this

Use this endpoint when you need granular, minute-by-minute price path reconstruction from the moment of pool creation for a specific Robinhood Chain token launch. It is uniquely suited for post-mortem analysis of individual token launches, not for forecasts or aggregate statistics. Prefer sibling endpoints for cohort base rates or family-level statistics; use this endpoint when you have a specific token address and need its exact launch price trajectory.

## Known failure modes

- Token address not found or pool not yet indexed — returns error or empty data
- Invalid token address format (not a valid 0x EVM address) — schema validation error
- Chain parameter set to anything other than 'robinhood' — rejected as unsupported
- Offering identifier not exactly 't0_price_path' — request rejected
- Payment failure via x402 protocol — call not processed
- Pool too new or insufficient swap history — incomplete data returned

## How this service works

Launch Price Path. Minute-resolution price path from pool creation (t0): peak multiple, minutes to peak, terminal multiple, drawdown from peak, and buy fraction. Reconstructed from swap logs on our own chain node. Observation, not a forecast.

## Output

Returns observed, minute-resolution price path metrics from pool creation: peak multiple (highest price relative to launch), minutes to peak, terminal multiple (final price relative to launch), drawdown from peak (percentage drop from high), and buy fraction (share of swaps that were buys). Data is reconstructed from swap logs on TENNA's own chain node and represents historical observation, not a forecast.

## 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": "t0_price_path",
   "description": "Offering identifier. Must be exactly 't0_price_path'."
  },
  "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-t0-price-path-7fd94f5e/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)
