RSI, MACD, EMA 20/50/200, SMA 20/50, Bollinger bands, ATR and VWAP computed dete
RSI, MACD, EMA 20/50/200, SMA 20/50, Bollinger bands, ATR and VWAP computed deterministically from live candles for one coin and interval, with the latest series points and a plain-language summary. Use it when an agent needs standard technical indicators without fetching candles and computing them itself.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
943 msmedian answer time
$0.002listed price per call
$0.002price 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
POST https://agent402.tools/api/crypto-indicators
| Category | Market data |
|---|---|
| Provider host | agent402.tools |
| Networks | algorand:wGHE2Pwdvd7S12BL5FaOP20EGYesN73ktiC1qzkkit8=, eip155:10, eip155:1329, eip155:137, eip155:143, eip155:42161, eip155:42220, eip155:43114, eip155:4663, eip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp, stellar:pubnet |
| Payment schemes | exact, upto |
| Self-reported calls, 30 days | 4 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.002 | 943 ms |
Example input (from the provider)
{
"body": {
"coin": "BTC",
"interval": "1h",
"limit": 200,
"points": 5
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"coin": {
"description": "Perp ticker, e.g. BTC, ETH, SOL.",
"type": "string"
},
"indicators": {
"description": "Optional subset of: rsi, macd, ema, sma, bollinger, atr, vwap (default all).",
"items": {
"type": "string"
},
"type": "array"
},
"interval": {
"description": "Candle interval (default 1h): 1m 3m 5m 15m 30m 1h 2h 4h 8h 12h 1d 3d 1w 1M.",
"type": "string"
},
"limit": {
"description": "Candles to compute over (default 200, max 500). EMA200 needs 200, MACD 34, RSI/ATR 15, SMA/Bollinger 20.",
"type": "number"
},
"points": {
"description": "Series points to return per indicator, newest last (default 20, max 100).",
"type": "number"
}
},
"required": [
"coin"
]
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"candles": {
"type": "integer"
},
"coin": {
"type": "string"
},
"fetchedAt": {
"type": "string"
},
"indicators": {
"type": "object"
},
"interval": {
"type": "string"
},
"lastClose": {
"type": "integer"
},
"source": {
"type": "string"
},
"summary": {
"type": "object"
},
"window": {
"type": "object"
}
},
"required": [
"source",
"coin",
"interval",
"candles",
"window",
"lastClose",
"indicators",
"summary",
"fetchedAt"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}