Single token

One token's price/supply/corporate-action detail plus its own DeFi summary — a spot check, not a catalog dump. The same data backing the get_token MCP tool.

Path Parameters
  • symbol
    Type: string
    required

    Stock-token ticker, case-insensitive (e.g. NVDA).

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

const client = new HoodGrowClient({ apiKey: process.env.HOODGROW_API_KEY });
const nvda = await client.getToken("NVDA");
console.log(nvda.token.priceUsd, nvda.token.supplyAdjusted);

{
  "chainId": 4663,
  "updatedAt": "2026-08-11T14:02:07.881Z",
  "token": {
    "symbol": "NVDA",
    "name": "NVIDIA • Robinhood Token",
    "address": "0xd0601CE157Db5bdC3162BbaC2a2C8aF5320D9EEC",
    "priceUsd": 178.34,
    "priceSource": "chainlink",
    "change24hPercent": 1.82,
    "supply": 1000000,
    "supplyAdjusted": true,
    "snapshotTs": "2026-08-11T14:01:55.000Z"
  },
  "defi": {
    "morphoBestSupplyApy": 3.94,
    "morphoBestSupplyApyMarketId": "0x9f3c2a1b8d7e6f5c4b3a29180706f5e4d3c2b1a0",
    "uniswapTvlUsd": 812443.17,
    "uniswapPoolCount": 2
  },
  "pendingCorporateActions": [],
  "recentCorporateActions": [
    {
      "symbol": "NVDA",
      "name": "NVIDIA • Robinhood Token",
      "type": "CORPORATE_ACTION_TYPE_CASH_DIVIDEND",
      "typeLabel": "Cash dividend",
      "status": "CORPORATE_ACTION_STATUS_COMPLETED",
      "statusLabel": "Completed",
      "processDate": "2026-06-12",
      "detail": "$0.01 per share",
      "details": {
        "cashDividend": {
          "amount": "0.01",
          "currency": "USD"
        }
      },
      "url": "https://www.hoodgrow.com/corporate-actions/nvda-cash-dividend-2026-06-12"
    }
  ]
}