# TENNA Launch Intelligence – Launcher Classification

> TENNA Launch Intelligence – Launcher Classification 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).

Classifies which launch system created a given token pool on Robinhood Chain, distinguishing WETH-paired meme launchpads from VIRTUAL-paired launchers without assuming official Virtuals affiliation.

## Facts

- Endpoint: POST https://app.tenna.ai/api/x402/tenna/launcher_classification
- 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-launcher-classification-ca0ffc1d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Wrc-sDl-mwy5lzyVECcE0

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-launcher-classification-ca0ffc1d -d '<json body>'
```

Example prompt: Can you classify which launch system created the token pool at 0x1234567890abcdef1234567890abcdef12345678 on Robinhood Chain — specifically whether it's a WETH-paired meme launchpad or a VIRTUAL-paired launcher?

## When to prefer this

Choose this endpoint when you need to determine the specific launchpad or launch system behind a token pool on Robinhood Chain, especially when distinguishing between WETH-paired meme launchpads and VIRTUAL-paired launchers matters for due diligence or investment decisions. It is particularly valuable when you cannot assume a token is from an official Virtuals system and need independent verification of that claim.

## Known failure modes

- Invalid token address format (not a valid 40-hex EVM address) returns validation error
- Chain value other than 'robinhood' returns unsupported chain error
- Token address not found or not associated with any recognized launcher returns null or unknown classification
- Payment failure via x402 protocol prevents response
- Unverifiable launcher returns classification with low-confidence or unverified flag rather than asserting official status

## How this service works

Launcher Classification. Which launch system created this pool, and on what basis. Distinguishes WETH-paired meme launchpads from VIRTUAL-paired launchers. Never claims a launcher is an official Virtuals system without independent verification.

## Output

Returns the identified launch system that created the token pool, specifying whether it is a WETH-paired meme launchpad or a VIRTUAL-paired launcher, along with the basis for the classification and a note on whether it can be independently verified as an official Virtuals system.

## 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": "launcher_classification",
   "description": "Offering identifier. Must be exactly 'launcher_classification'."
  },
  "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-launcher-classification-ca0ffc1d/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)
