# 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 metrics from pool creation (t0) for a given token: peak multiple, minutes to peak, terminal multiple, drawdown from peak, and buy fraction — reconstructed from on-chain swap logs.

## Facts

- Endpoint: POST https://app.tenna.ai/api/x402/tenna/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-d4a26d58
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DAchVN9nhaJpf0-7D7PTd

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-d4a26d58 -d '<json body>'
```

Example prompt: Pull the T0 price path for token 0xAbCd1234... on the robinhood chain — I want to see the peak multiple, how many minutes it took to hit peak, the terminal multiple, the drawdown from peak, and the buy fraction.

## When to prefer this

Use this endpoint when you need factual, observed price path metrics for a specific token launch on the robinhood chain — especially peak multiple, time-to-peak, terminal multiple, drawdown, and buy fraction reconstructed from swap logs. Prefer this over social sentiment or forecast endpoints when you need ground-truth historical launch behavior for a known token address.

## Known failure modes

- Invalid or unsupported token address format (must be 0x-prefixed 40-hex-char EVM address)
- Token address not found on robinhood chain or no pool creation event detected
- Chain value other than 'robinhood' will be rejected
- Offering identifier not exactly 'tenna_t0_price_path' will fail
- Insufficient swap log data for meaningful price path reconstruction
- Payment failure or insufficient USDC balance for $0.01 per-call fee

## How this service works

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 minute-resolution price path analytics from pool creation (t0): the peak multiple reached relative to launch price, the number of minutes elapsed until peak, the terminal multiple at end of observation, the maximum drawdown percentage from peak, and the buy fraction (proportion of swaps that were buys). All values are reconstructed observations from on-chain swap logs, not forecasts.

## 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-d4a26d58/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)
