# n0brains Real-Time Crypto Trading Signals

> n0brains Real-Time Crypto Trading Signals is a paid API for AI agents from api.n0brains.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Returns scored, directional trading signals (whale flows, funding, liquidations, listings, news, on-chain) for BTC, ETH, SOL and 400+ coins, with confidence and conviction ratings

## Facts

- Endpoint: GET https://api.n0brains.com/x402/signals
- 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/n0brains-real-time-crypto-trading-signals-ed4e04b7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TSb7Qx1uOLO2rCO0CRgrR

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 n0brains-real-time-crypto-trading-signals-ed4e04b7
```

Example prompt: Show me the top 20 long signals right now across all Coinbase-listed coins — I want whale flow and funding signals only, proven track record preferred, scored by confidence.

## When to prefer this

Use this endpoint when an agent needs real-time, pre-scored, multi-type crypto trading signals across a broad universe of coins — especially when the user wants to filter by direction (long/short), signal type (whale, funding, on-chain, etc.), or restrict to coins with a verified historical track record. Prefer over generic news or price feeds when actionable signal classification and conviction scoring are required.

## Known failure modes

- Invalid asset symbol returns empty signals array or 400 error
- Unsupported signal_type value may return no results
- Payment not confirmed results in 402 Payment Required response
- limit out of range (below 1 or above 200) returns validation error
- Network timeout if signal feed is momentarily unavailable

## How this service works

Real-time crypto trading signals for BTC, ETH, SOL and 400+ coins — classified by type (whale flows, funding, liquidations, listings, news, on-chain), scored, with direction, confidence and conviction. Emitted signals' forward-return record is public at n0brains.com/proof. Not financial advice.

## Output

A JSON array of trading signals, each including the asset symbol, signal type (whale flows, funding, liquidations, listings, news, on-chain), direction (long/short), confidence score, and conviction rating. Also returns a total count of signals matched and the amount paid per call.

## 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"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "asset": {
       "type": "string",
       "description": "e.g. BTC, ETH, SOL"
      },
      "limit": {
       "type": "integer",
       "maximum": 200,
       "minimum": 1
      },
      "direction": {
       "enum": [
        "long",
        "short"
       ],
       "type": "string"
      },
      "proven_only": {
       "type": "boolean"
      },
      "signal_type": {
       "type": "string"
      },
      "coinbase_only": {
       "type": "boolean",
       "description": "default true: only Coinbase-listed coins (USD/USDC). false = all."
      },
      "tradeable_only": {
       "type": "boolean"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "paid": {
       "type": "string"
      },
      "count": {
       "type": "integer"
      },
      "signals": {
       "type": "array",
       "items": {
        "type": "object"
       }
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/n0brains-real-time-crypto-trading-signals-ed4e04b7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.n0brains.com](https://www.zero.xyz/host/api.n0brains.com/llms.txt)
