# n0brains Crypto Support & Resistance Levels

> n0brains Crypto Support & Resistance Levels is a paid API for AI agents from api.n0brains.com, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-15).

Returns real-time support and resistance price levels for any cryptocurrency, including nearest levels and full ranked lists with touch counts and strength scores.

## Facts

- Endpoint: GET https://api.n0brains.com/x402/levels/:var1
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/n0brains-crypto-support-resistance-levels-060431b1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_s-MrR7Q4cTXAtNthMa0TE

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-crypto-support-resistance-levels-060431b1
```

Example prompt: Pull the current support and resistance levels for SOL right now — I want to see the nearest support and resistance prices, their touch counts, and which levels are strongest so I can plan my entry and stop.

## When to prefer this

Use this endpoint when you need real-time, algorithmically computed support and resistance levels for a specific cryptocurrency — particularly when you want ranked levels by strength with touch counts rather than static or manually drawn zones. Ideal for trading agents that need dynamic entry, exit, stop, and target prices.

## Known failure modes

- Invalid or unsupported coin ticker returns an error or empty levels
- Network latency from live price feed may cause slight delays
- Missing required 'coin' query parameter returns a 400-level error
- Thinly traded or obscure coins may have sparse level data

## How this service works

Real-time crypto support and resistance levels for any coin (BTC, ETH, SOL, +): nearest and ranked support/resistance prices with touch counts and strength, computed from live price action. For entries, exits, stops and targets. Not financial advice.

## Output

Returns an object containing the current price of the coin, the nearest support level object, the nearest resistance level object, an array of all support levels (each with price, touch count, and strength), and an array of all resistance levels — all computed from live price action.

## 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"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "coin"
     ],
     "properties": {
      "coin": {
       "type": "string",
       "description": "ticker, e.g. BTC"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "coin": {
       "type": "string"
      },
      "all_support": {
       "type": "array"
      },
      "current_price": {
       "type": "number"
      },
      "all_resistance": {
       "type": "array"
      },
      "nearest_support": {
       "type": "object"
      },
      "nearest_resistance": {
       "type": "object"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/n0brains-crypto-support-resistance-levels-060431b1/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)
