# HoodGrow COST Token Data

> HoodGrow COST Token Data is a paid API for AI agents from www.hoodgrow.com, paid per call via x402, $0.05/call, status down (last checked 2026-09-15).

Returns live price, corporate-action adjusted supply, and corporate-action history for the COST (Costco) stock token on Robinhood Chain.

## Facts

- Endpoint: GET https://www.hoodgrow.com/api/agent/token/COST
- Price: $0.05/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/hoodgrow-cost-token-data-3425e9ff
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3dwpVETPFJ-GUZVS2DYYf

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 hoodgrow-cost-token-data-3425e9ff
```

Example prompt: What's the current live price and corporate-action adjusted supply for the COST stock token on Robinhood Chain, along with any recent corporate-action history?

## When to prefer this

Use this endpoint when you specifically need on-chain stock token data for COST (Costco) from Robinhood Chain, including corporate-action adjusted supply and action history. Prefer this over generic stock price APIs when operating in a DeFi or tokenized-equity context where on-chain accuracy and corporate-action adjustments matter.

## Known failure modes

- COST token not found or delisted — 404 or empty response
- Robinhood Chain node unavailable — upstream timeout or 503
- Payment not accepted — 402 if USDC payment fails or is insufficient
- Malformed response if corporate action data is temporarily unavailable
- Rate limiting if called too frequently without valid payment

## How this service works

HoodGrow — live price, corporate-action adjusted supply, and corporate-action history for COST on Robinhood Chain. Prices read from Chainlink feeds on-chain, refreshed every 15 min; observedAt gives each snapshot's age and priceSource the resolver. Supply is totalSupply x ERC-8056 uiMultiplier — adjusted, not raw. Corporate actions read from the contract's ERC-8056 state every minute — the multiplier change itself; the registry is mirrored for history.

## Output

Returns a JSON object containing the live price of the COST stock token on Robinhood Chain, its corporate-action adjusted circulating supply, and a history of corporate actions (such as splits or dividends) that have affected the token.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/hoodgrow-cost-token-data-3425e9ff/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.hoodgrow.com](https://www.zero.xyz/host/www.hoodgrow.com/llms.txt)
