# TENNA Launch Intelligence – Hyperboost Graduation Receipt

> TENNA Launch Intelligence – Hyperboost Graduation Receipt is a paid API for AI agents from app.tenna.ai, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Returns on-chain evidence of whether a specific Robinhood Chain token graduated through the Virtuals Hyperboost program, matched against an official graduation receipt on chainId 4663.

## Facts

- Endpoint: POST https://app.tenna.ai/api/x402/tenna/hyperboost_graduation_receipt
- Price: $0.02/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-hyperboost-graduation-receipt-2731899f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RCsA7HUcZhErsYrtB_lY4

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-hyperboost-graduation-receipt-2731899f -d '<json body>'
```

Example prompt: Can you pull the TENNA Hyperboost graduation receipt for Robinhood Chain token 0x1234567890abcdef1234567890abcdef12345678 and tell me if it has a verified Virtuals official candidate match with an on-chain graduation receipt on chainId 4663?

## When to prefer this

Use this endpoint when you need cryptographic, on-chain evidence of a specific token's Hyperboost graduation on Robinhood Chain (chainId 4663) matched to a Virtuals official candidate. Prefer this over general token info endpoints when the user specifically asks about Hyperboost program completion or graduation receipts. Do not use if you need trading signals, safety ratings, reward/claim data, or data from chains other than Robinhood Chain.

## Known failure modes

- Token address not found or not matched to any Virtuals official candidate — returns unverified result
- Token has not graduated Hyperboost — receipt absent, result is non-verified
- Invalid EVM address format (must match ^0x[a-fA-F0-9]{40}$) — schema validation error
- Unsupported chain value (only 'robinhood' is accepted) — error response
- Payment failure via x402 protocol — 402 Payment Required returned
- Network or upstream RPC issues preventing on-chain receipt lookup — service error

## How this service works

Hyperboost Graduation Proof. Robinhood Chain Hyperboost graduation evidence for one token. A VERIFIED result requires a Virtuals official candidate matched to an on-chain graduation receipt on chainId 4663. Market fields are a later snapshot; reward and claim amounts remain unavailable without official wallet authentication and are never estimated. Historical evidence only, not a safety certificate and not a trading signal.

## Output

Returns a structured graduation evidence record indicating whether the token has a verified Virtuals official candidate match paired with an on-chain graduation receipt on chainId 4663 (Robinhood Chain). Includes available market snapshot fields from a later point in time. Reward and claim amounts are not included. The result is historical evidence only, not a safety certificate or trading signal.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "chain": {
   "enum": [
    "robinhood"
   ],
   "type": "string",
   "description": "Only Robinhood Chain is supported."
  },
  "offering": {
   "type": "string",
   "const": "hyperboost_graduation_receipt",
   "description": "Offering identifier. Must be exactly 'hyperboost_graduation_receipt'."
  },
  "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-hyperboost-graduation-receipt-2731899f/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)
