/v1/asset
One market ADX / directional-movement card
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
curl "https://api.oanor.com/adxscreener-api/v1/asset" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/adxscreener-api/v1/asset", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/adxscreener-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/adxscreener-api/v1/asset",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"adx": 27.4,
"key": "sp500",
"note": "One market's directional-movement card: 14-day ADX (trend strength), +DI and -DI (direction) and a regime label. ADX>=25 is a strong trend; <20 is ranging.",
"class": "equities",
"label": "S&P 500",
"regime": "strong downtrend",
"source": "Yahoo Finance",
"symbol": "SPY",
"plus_di": 16.5,
"minus_di": 27.4,
"direction": "down",
"trend_strength": "strong"
},
"meta": {
"timestamp": "2026-06-12T10:35:03.283Z",
"request_id": "21b678f4-f146-40cc-a4ec-c5b299fe1d5b"
},
"status": "ok",
"message": "Asset retrieved successfully",
"success": true
}