# Robinhood Radar On-Chain New Pool Feed

> Robinhood Radar On-Chain New Pool Feed is a paid API for AI agents from www.robinhoodradar.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns a real-time feed of every new liquidity pool launched on the Robinhood chain, as detected on-chain.

## Facts

- Endpoint: GET https://www.robinhoodradar.com/api/newpools
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/robinhood-radar-on-chain-new-pool-feed-443222d6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LqTs10deiXcHQi6CXUhhw

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-radar-on-chain-new-pool-feed-443222d6
```

Example prompt: Can you pull the latest new pool feed from Robinhood Radar and show me every liquidity pool that just launched on the Robinhood chain?

## When to prefer this

Choose this endpoint when you need a real-time, comprehensive feed of every new liquidity pool created on the Robinhood chain, especially for early token discovery, sniping, or monitoring purposes. Prefer this over the board snapshot or base dataset endpoints when you need the freshest possible pool creation events rather than aggregated or reranked data.

## Known failure modes

- Payment required (402) if x402 micropayment header is missing or malformed
- No new pools if chain activity is low — returns empty list rather than error
- Rate limiting if called too frequently without payment
- Network or upstream RPC errors returning 5xx responses
- Stale or delayed data if the on-chain indexer lags

## How this service works

Robinhood Radar on-chain new-pool feed (every new Robinhood-chain launch).

## Output

A list of newly created on-chain liquidity pools on the Robinhood chain, each record likely including pool address, token identifiers, creation timestamp, and other launch metadata relevant to early discovery of new token markets.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "headers": {
     "type": "object",
     "additionalProperties": {
      "type": "string"
     }
    },
    "queryParams": {
     "type": "object",
     "additionalProperties": {
      "type": "string"
     }
    }
   },
   "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/robinhood-radar-on-chain-new-pool-feed-443222d6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.robinhoodradar.com](https://www.zero.xyz/host/www.robinhoodradar.com/llms.txt)
