# HoodGrow Corporate Actions Feed

> HoodGrow Corporate Actions Feed 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 a filterable, paginated feed of Robinhood Chain corporate-action events (stock splits, dividends, oracle pauses) sourced from on-chain detection and the official ledger.

## Facts

- Endpoint: GET https://www.hoodgrow.com/api/corporate-actions
- 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-corporate-actions-feed-a6ad8e2d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_I2-cxDoZNkb8oAnVDU6wM

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-corporate-actions-feed-a6ad8e2d
```

Example prompt: Pull the latest corporate-action events from HoodGrow — I want to see any stock splits, dividends, or oracle pauses that have happened recently on Robinhood Chain.

## When to prefer this

Choose this endpoint when you need a structured, filterable, and paginated feed of all Robinhood Chain corporate-action events (splits, dividends, oracle pauses) that combines both on-chain detection and the official ledger — making it more comprehensive than querying individual token endpoints. It is ideal for monitoring or auditing corporate actions across all Robinhood Chain stock tokens rather than looking up a single token's history.

## Known failure modes

- Payment not received or invalid x402 payment header — 402 error returned
- Invalid or unsupported query parameter values — 400 bad request
- No corporate action events match the applied filters — empty result set returned
- Upstream on-chain or ledger data temporarily unavailable — 503 or timeout error
- Rate limiting if too many requests are made in quick succession — 429 error

## How this service works

HoodGrow — dedicated, filterable, paginated feed of Robinhood Chain corporate-action events (splits, dividends, oracle pauses), sourced from both on-chain detection and the official ledger.

## Output

A paginated list of corporate-action event objects recorded on Robinhood Chain, each containing event type (split, dividend, oracle pause), relevant token identifiers, timestamp, on-chain transaction references, and official ledger confirmation details.

## 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"
    },
    "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-corporate-actions-feed-a6ad8e2d/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)
