/v1/current
Latest short interest with change vs prior period
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/shortinterest-api/v1/current" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/shortinterest-api/v1/current", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/shortinterest-api/v1/current");
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/shortinterest-api/v1/current",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"trend": "rising",
"market": "US",
"source": "Nasdaq",
"symbol": "AAPL",
"change_pct": 12.32,
"shares_short": 155886024,
"change_shares": 17103306,
"days_to_cover": 3.3841,
"settlement_date": "05/29/2026",
"avg_daily_volume": 46064146,
"prior_shares_short": 138782718,
"prior_settlement_date": "05/15/2026"
},
"meta": {
"timestamp": "2026-06-12T01:42:20.683Z",
"request_id": "4e7419af-3bff-4c36-9c34-0bc796a9fceb"
},
"status": "ok",
"message": "Short interest retrieved successfully",
"success": true
}