# Robinhood Radar New-Coin Discovery Snapshot

> Robinhood Radar New-Coin Discovery Snapshot 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-14).

Returns a snapshot of newly discovered coins on the Robinhood Radar platform for on-chain new-coin discovery.

## Facts

- Endpoint: GET https://www.robinhoodradar.com/api/discovery-newcoins
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/robinhood-radar-new-coin-discovery-snapshot-9611fe32
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SpKMMF1u1Ispj0REWK_4U

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-discovery-snapshot-9611fe32
```

Example prompt: Pull the latest new-coin discovery snapshot from Robinhood Radar so I can see which tokens have just launched.

## When to prefer this

Use this endpoint when you need a point-in-time snapshot of newly discovered coins from Robinhood Radar specifically, rather than a live streaming feed or enriched liquidity/volume data. It is the lowest-cost, fastest way to get a basic new-coin list without needing deeper on-chain enrichment.

## Known failure modes

- Payment required (402) if x402 micropayment header is missing or invalid
- Empty snapshot if no new coins have been discovered recently
- Stale data if the underlying discovery feed has not been refreshed
- Rate limiting or access errors if the endpoint is called too frequently
- Malformed or incomplete response if the upstream data pipeline has issues

## How this service works

Robinhood Radar new-coin discovery snapshot.

## Output

A snapshot payload listing newly discovered coins tracked by Robinhood Radar, likely including token identifiers, names, and basic metadata about each newly launched coin at the time of the request.

## 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-discovery-snapshot-9611fe32/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)
