/v1/asset
One market Bollinger Bands card
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/bollinger-api/v1/asset" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/bollinger-api/v1/asset", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/bollinger-api/v1/asset");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/bollinger-api/v1/asset",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"key": "sp500",
"note": "One market's Bollinger card: 20-day middle band and upper/lower bands (+/-2 sigma), percent_b (position in the bands), bandwidth and its ~6-month percentile, and whether it is in a squeeze (compressed, breakout pending).",
"class": "equities",
"label": "S&P 500",
"price": 737.76,
"source": "Yahoo Finance",
"symbol": "SPY",
"squeeze": false,
"position": "inside bands",
"percent_b": 29.5,
"lower_band": 726.8073,
"upper_band": 763.9837,
"middle_band": 745.3955,
"bandwidth_pct": 4.99,
"bandwidth_percentile": 55
},
"meta": {
"timestamp": "2026-06-12T10:35:08.172Z",
"request_id": "1c1f94fa-6f7f-4c41-b451-03161789e65c"
},
"status": "ok",
"message": "Asset retrieved successfully",
"success": true
}