# Robinhood Chain Transaction Lookup

> Robinhood Chain Transaction Lookup 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).

Looks up the status and details of a transaction on Robinhood Chain by hash, returning status, block, sender/receiver, value, gas used, and log count.

## Facts

- Endpoint: POST https://x402-services-production.up.railway.app/api/rhchain/tx
- 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-transaction-lookup-8a800898
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_QNse2IYBRtfp6RWdOYaHZ

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-transaction-lookup-8a800898 -d '<json body>'
```

Example prompt: Can you check whether transaction 0xabc123... on Robinhood Chain went through — I need to know the status, block number, and how much gas was used.

## When to prefer this

Use this endpoint when you specifically need to look up a transaction on Robinhood Chain (the chain used by Robinhood for tokenized equities and on-chain trading). Prefer this over generic EVM transaction explorers when working within the Robinhood Chain ecosystem, especially for tokenized stock transfers or Robinhood-native DeFi activity.

## Known failure modes

- Transaction hash not found — returns error if the hash doesn't exist on Robinhood Chain
- Invalid hash format — malformed or non-hex hash causes a bad request error
- Transaction still pending — status returned as pending with incomplete finality data
- Network or RPC unavailability — upstream Robinhood Chain node may be unreachable
- Payment failure — $0.005 USDC charge not processed results in 402 error

## How this service works

Robinhood Chain transaction lookup: status (success/failed/pending), block, from/to, value, gas used, log count. Send { hash }.

## Output

Returns transaction status (success/failed/pending), block number, from and to addresses, value transferred, gas used, and log count for the given transaction hash on Robinhood Chain.

## 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-transaction-lookup-8a800898/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)
