/v1/gainers
Top advancing names
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
curl "https://api.oanor.com/stockmovers-api/v1/gainers" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/stockmovers-api/v1/gainers", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/stockmovers-api/v1/gainers");
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/stockmovers-api/v1/gainers",
headers={"x-oanor-key": "oanor_test_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"data": {
"as_of": "Data as of Jun 11, 2026 9:40 PM ET",
"asset": "STOCKS",
"count": 10,
"market": "US",
"movers": [
{
"name": "Spark I Acquisition Corp.",
"price": 1.88,
"symbol": "SPKLW",
"change_pct": 437.1429,
"price_change": 1.53
},
{
"name": "Gelteq Limited",
"price": 1.53,
"symbol": "GELS",
"change_pct": 197.3761,
"price_change": 1.0155
},
{
"name": "Quhuo Limited American Depository Shares",
"price": 7.41,
"symbol": "QH",
"change_pct": 128,
"price_change": 4.16
},
{
"name": "Galaxy Payroll Group Limited",
"price": 2.08,
"symbol": "GLXG",
"change_pct": 113.0929,
"price_change": 1.1039
},
{
"name": "Sunshine Biopharma Inc.",
"price": 0.0496,
"symbol": "SBFMW",
"change_pct": 83.0258,
"price_change": 0.0225
},
{
"name": "CID HoldCo, Inc. Warrants",
"price": 0.0195,
"symbol": "DAICW",
"change_pct": 82.243,
"price_change": 0.0088
},
{
"name": "Propanc Biopharma, Inc. Common Stock",
"price": 2.43,
"symbol": "PPCB",
"change_pct": 80,
"price_change": 1.08
},
{
"name": "Conduit Pharmaceuticals Inc. ",
"price": 0.0168,
"symbol": "CDTTW",
"change_pct": 78.7234,
"price_change": 0.0074
},
{
"name": "Everbright Digital Holding Limited Ordinary Shares",
"price": 5.98,
"symbol": "EDHL",
"change_pct": 70.8571,
"price_change": 2.48
},
{
"name": "Defiance Daily Target 2X Long VELO ETF",
"price": 45.01,
"symbol": "VELL",
"change_pct": 69.5292,
"price_change": 18.46
}
],
"source": "Nasdaq",
"category": "gainers"
},
"meta": {
"timestamp": "2026-06-12T01:42:35.849Z",
"request_id": "efa6e85a-00b2-4256-a12c-e47490e731b3"
},
"status": "ok",
"message": "Gainers retrieved successfully",
"success": true
}