# Robinhood Chain Top Movers (Gainers/Losers)

> Robinhood Chain Top Movers (Gainers/Losers) 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-14).

Returns the top gaining or losing liquid pools on Robinhood Chain over the past 24 hours, ranked by price change, with liquidity and volume data.

## Facts

- Endpoint: POST https://x402-services-production.up.railway.app/api/rh/gainers
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/robinhood-chain-top-movers-gainers-losers-2dcebab7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ybdSk7gu7U0SoTn9d9K9X

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-top-movers-gainers-losers-2dcebab7 -d '<json body>'
```

Example prompt: What are the top 15 biggest gainers among liquid pools on Robinhood Chain over the last 24 hours — show me price change, liquidity, and volume?

## When to prefer this

Use this endpoint when you need a quick momentum snapshot of the Robinhood Chain market — specifically to find which pools or tokenized assets are experiencing the largest price swings in either direction over 24 hours. Prefer this over individual token quotes when you want a ranked, market-wide view rather than a single asset's price.

## Known failure modes

- Invalid direction value (not 'gainers' or 'losers') returns a 400-level error
- limit exceeding 30 may be capped or rejected
- No liquid pools found matching criteria returns empty results
- Upstream Robinhood Chain data unavailable causes 5xx error
- Stale or delayed on-chain data if indexer is lagging

## How this service works

Top movers on Robinhood Chain: biggest 24h gainers (or losers) among liquid pools, with price change, liquidity, and volume. Send { limit?, direction? }. Momentum radar for the Robinhood Chain market.

## Output

A ranked list of up to 30 liquid pools on Robinhood Chain, ordered by 24-hour price change in the specified direction (gainers or losers), each entry including the token pair, price change percentage, liquidity depth, and trading volume.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "number",
   "description": "Max results, default 10 (max 30)"
  },
  "direction": {
   "type": "string",
   "description": "\"gainers\" (default) or \"losers\""
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/robinhood-chain-top-movers-gainers-losers-2dcebab7/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)
