# Robinhood Chain Address Activity Feed

> Robinhood Chain Address Activity Feed is a paid API for AI agents from x402-services-production.up.railway.app, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Retrieves recent on-chain transactions for a given address on Robinhood Chain, including hash, method, status, counterparties, and value.

## Facts

- Endpoint: POST https://x402-services-production.up.railway.app/api/rhchain/activity
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/robinhood-chain-address-activity-feed-52750751
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4CEDNb0F7eHO5IrcbznP-

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 robinhood-chain-address-activity-feed-52750751 -d '<json body>'
```

Example prompt: Pull up the recent transaction history for Robinhood Chain address 0xABC123... — I want to see the hashes, methods, statuses, counterparties, and values for each transaction.

## When to prefer this

Choose this endpoint when you need recent transaction history specifically on Robinhood Chain (rhchain) for a given wallet address. It is purpose-built for Robinhood Chain activity rather than generic EVM chains, making it the right choice when your user is specifically investigating rhchain wallet behavior, auditing a counterparty on that network, or monitoring tokenized-asset trading activity native to Robinhood's blockchain.

## Known failure modes

- Invalid or malformed wallet address returns an error or empty result
- Address with no Robinhood Chain activity returns an empty transaction list
- Network or upstream Robinhood Chain RPC issues may cause timeouts
- Incorrect request body structure (missing address field) returns a validation error
- Payment failure (insufficient USDC balance) returns a 402 error

## How this service works

Robinhood Chain recent transactions for an address: hash, method, status, counterparties, value. Send { address }.

## Output

Returns a list of recent transactions for the given address on Robinhood Chain. Each transaction includes its hash, method name (e.g. transfer, swap), execution status (success/fail), counterparty addresses (sender/receiver), and value transferred.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object"
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json"
     ],
     "type": "string"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/robinhood-chain-address-activity-feed-52750751/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-services-production.up.railway.app](https://www.zero.xyz/host/x402-services-production.up.railway.app/llms.txt)
