# Robinhood Radar New-Coin Feed

> Robinhood Radar New-Coin 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 tracked feed of newly launched coins on the Robinhood chain, enriched with liquidity, volume, and holder data.

## Facts

- Endpoint: GET https://www.robinhoodradar.com/api/newcoins
- 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-new-coin-feed-ef6922f7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CoDdi2iGhg1MeSzAe2GVf

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-new-coin-feed-ef6922f7
```

Example prompt: Pull the latest new-coin feed from Robinhood Radar and show me which recently launched tokens have the strongest liquidity and holder counts.

## When to prefer this

Use this endpoint when you need a ready-made, enriched snapshot of newly launched coins on the Robinhood chain without having to aggregate raw on-chain pool events yourself. It is ideal when you want liquidity, volume, and holder data bundled together for discovery or screening purposes. Prefer it over the raw new-pool feed when you need enriched token-level signals rather than bare pool events, and over the board snapshot when you specifically want new launches rather than a ranked leaderboard.

## Known failure modes

- Payment not fulfilled — 402 response if x402 payment header is missing or insufficient
- No new coins in window — empty array returned if no new launches exist in the current period
- Rate limiting — repeated rapid calls may be throttled
- Network/provider downtime — 503 or timeout if upstream on-chain data source is unavailable
- Stale data — enrichment metrics may lag real-time chain state by seconds to minutes

## How this service works

Robinhood Radar tracked new-coin feed with liquidity/volume/holder enrichment.

## Output

A JSON feed of recently launched coins on the Robinhood chain, each record enriched with on-chain liquidity depth, trading volume, and holder count metrics to help assess token viability at launch.

## 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-new-coin-feed-ef6922f7/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)
