Base B20 token registry (pre-launch)

Base-mainnet (chain 8453) native-equity "B20" tokens — a separate registry from Robinhood Chain. Currently pre-launch: verified on-chain metadata, but totalSupply is 0 for every token until minting begins. status flips from pre_launch to live automatically once real supply appears on-chain. The same data backing the get_base_tokens MCP tool.

Responses
  • application/json
  • application/json
  • application/json
  • application/json
  • application/json
  • application/json
Request Example for get/api/agent/base/tokens
import { HoodGrowClient } from "hoodgrow";

const client = new HoodGrowClient({ apiKey: process.env.HOODGROW_API_KEY });
const { tokens } = await client.getBaseTokens();
// Pre-launch: check status before treating a row as tradable.
const live = tokens.filter((t) => t.status === "live");

{
  "chainId": 8453,
  "updatedAt": "2026-08-11T14:02:07.881Z",
  "note": "PRE-LAUNCH: these Base B20 tokens have verified on-chain metadata but zero minted supply as of the last check — no price, no DEX liquidity, no holders exist yet. status flips to \"live\" automatically once totalSupply() > 0 on-chain. Do not treat a pre_launch row as tradable.",
  "tokens": [
    {
      "symbol": "AAPL",
      "name": "Apple Inc.",
      "address": "0xb200000000000000000000C2e324d24d7eEcd1fb",
      "decimals": 8,
      "status": "pre_launch",
      "totalSupplyRaw": "0",
      "totalSupply": 0,
      "checkedAt": "2026-08-11T13:45:00.000Z"
    },
    {
      "symbol": "NVDA",
      "name": "NVIDIA Corporation",
      "address": "0xb20000000000000000000078ee7ce2fE4908108C",
      "decimals": 8,
      "status": "pre_launch",
      "totalSupplyRaw": "0",
      "totalSupply": 0,
      "checkedAt": "2026-08-11T13:45:00.000Z"
    }
  ]
}