# TENNA Hyperboost Graduation Receipt

> TENNA 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 graduation evidence for a token on Robinhood Chain, matching it against the Virtuals official candidate registry and a chainId 4663 graduation receipt.

## Facts

- Endpoint: POST https://app.tenna.ai/api/x402/tenna/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-hyperboost-graduation-receipt-6bf2d731
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_QQxTdbvWNQx-D0EX03FPL

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

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

## When to prefer this

Choose this endpoint when you need verifiable, on-chain graduation evidence for a specific token on Robinhood Chain (chainId 4663) matched against the Virtuals protocol candidate registry. It is specifically suited for agents that need historical attestation of whether a token completed the Hyperboost graduation process — not for price feeds, safety scoring, trading signals, or multi-chain lookups.

## Known failure modes

- Token address not matched to any Virtuals official candidate — returns unverified or no-match result
- Token has not graduated on chainId 4663 — no graduation receipt found
- Invalid token address format (not a valid 0x-prefixed 40-hex-char address) — schema validation error
- Chain parameter not set to 'robinhood' — rejected input
- Offering identifier mismatch — must be exactly 'tenna_hyperboost_graduation_receipt'
- Payment authentication failure — x402 payment of $0.02 USDC not processed
- Reward/claim amounts not returned — unavailable without official wallet authentication

## How this service works

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

A structured graduation receipt object containing: whether the token address matched a Virtuals official candidate, the on-chain graduation receipt data from chainId 4663 (Robinhood Chain), a later market snapshot if available, and verification status. Reward and claim amounts are explicitly excluded unless wallet authentication is provided. The result is historical evidence only and carries no safety or trading signal guarantees.

## 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-hyperboost-graduation-receipt-6bf2d731/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)
