/v1/activity
Accumulation/distribution — increased/decreased/new/sold-out
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/institutions-api/v1/activity" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/institutions-api/v1/activity", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/institutions-api/v1/activity");
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/institutions-api/v1/activity",
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": {
"note": "The institutional accumulation/distribution view for a US stock last quarter: how many institutions increased, decreased, held, opened (new) or closed (sold-out) their positions and the shares involved. net_share_flow is increased minus decreased shares (positive = institutions added net shares); net_new_positions is new minus sold-out holders; institution_sentiment reads buyers (increased + new) against sellers (decreased + sold-out). The smart-money flow signal. 13F data is quarterly.",
"source": "Nasdaq public institutional-holdings feed (api.nasdaq.com), keyless",
"symbol": "MSFT",
"new_positions": {
"shares": 748891376,
"holders": 225
},
"held_positions": {
"shares": 4965234736,
"holders": 341
},
"net_share_flow": 727582313,
"net_new_positions": 8,
"sold_out_positions": {
"shares": 22115490,
"holders": 217
},
"decreased_positions": {
"shares": 239633901,
"holders": 2777
},
"increased_positions": {
"shares": 967216214,
"holders": 3565
},
"institution_sentiment": "accumulating",
"total_institutional_shares": 6172084851
},
"meta": {
"timestamp": "2026-06-12T19:35:54.096Z",
"request_id": "0931b062-8520-41db-9873-43271606b9e7"
},
"status": "ok",
"message": "Activity retrieved successfully",
"success": true
}