Price levels for a crypto pair (top 100 coins)
Price levels for a crypto pair (top 100 coins): support and resistance (swing highs/lows and pivots), ATR, Fibonacci retracements and Ichimoku levels, plus a long and a short plan (entry, stop, two targets, risk/reward) and the bias from the confluence signal. Levels from price history, not trade advice.
Answeringour last check, 2026-09-25
1 of 1checks answered this week
183 msmedian answer time
$0.05listed price per call
$0.05price it asked us
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
GET https://ichimoku-signal.onrender.com/levels/:pair
| Category | Market data |
|---|---|
| Provider host | ichimoku-signal.onrender.com |
| Networks | eip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp |
| Payment schemes | exact |
| Self-reported calls, 30 days | 1 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-25 | valid payment request | 402 | $0.05 | 183 ms |
Example input (from the provider)
{
"method": "GET",
"pathParams": {
"pair": "BTC-USDT"
},
"queryParams": {
"interval": "4h"
},
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"pathParams": {
"properties": {
"pair": {
"description": "Trading pair, e.g. BTC-USDT or ETH-USDT",
"type": "string"
}
},
"required": [
"pair"
],
"type": "object"
},
"queryParams": {
"properties": {
"interval": {
"description": "Candle interval, e.g. 1h, 4h, 1d. Defaults to 1h.",
"enum": [
"1m",
"3m",
"5m",
"15m",
"30m",
"1h",
"2h",
"4h",
"6h",
"8h",
"12h",
"1d",
"3d",
"1w",
"1M"
],
"type": "string"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"atr": {
"description": "Average True Range (14)",
"type": "number"
},
"atr_percent": {
"type": "number"
},
"bias": {
"description": "From the confluence signal",
"enum": [
"long",
"short",
"none"
],
"type": "string"
},
"bias_from": {
"type": "string"
},
"confidence": {
"enum": [
"high",
"medium",
"low"
],
"type": "string"
},
"fibonacci": {
"type": "object"
},
"ichimoku": {
"properties": {
"cloud_bottom": {
"type": "number"
},
"cloud_top": {
"type": "number"
},
"kijun_sen": {
"type": "number"
}
},
"type": "object"
},
"interval": {
"type": "string"
},
"note": {
"type": "string"
},
"pair": {
"type": "string"
},
"pivots": {
"properties": {
"p": {
"type": "number"
},
"r1": {
"type": "number"
},
"r2": {
"type": "number"
},
"s1": {
"type": "number"
},
"s2": {
"type": "number"
}
},
"type": "object"
},
"plans": {
"properties": {
"long": {
"properties": {
"entry": {
"type": "number"
},
"obstacle_before_target": {
"type": [
"number",
"null"
]
},
"risk_reward_1": {
"type": "number"
},
"risk_reward_2": {
"type": "number"
},
"stop": {
"type": "number"
},
"stop_basis": {
"type": "string"
},
"target_1": {
"type": "number"
},
"target_2": {
"type": "number"
}
},
"type": "object"
},
"short": {
"properties": {
"entry": {
"type": "number"
},
"obstacle_before_target": {
"type": [
"number",
"null"
]
},
"risk_reward_1": {
"type": "number"
},
"risk_reward_2": {
"type": "number"
},
"stop": {
"type": "number"
},
"stop_basis": {
"type": "string"
},
"target_1": {
"type": "number"
},
"target_2": {
"type": "number"
}
},
"type": "object"
}
},
"type": "object"
},
"price": {
"type": "number"
},
"resistances": {
"description": "Up to 3 above the price, nearest first",
"items": {
"properties": {
"price": {
"type": "number"
},
"touches": {
"type": "integer"
}
},
"type": "object"
},
"type": "array"
},
"supports": {
"descr