/v1/quote
Live quote for one or more BVMT stocks
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/tunisia-stock-api/v1/quote" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/tunisia-stock-api/v1/quote", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/tunisia-stock-api/v1/quote");
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/tunisia-stock-api/v1/quote",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"note": "The live quote for one or more Tunisian (BVMT) stocks — price, change, open/high/low, volume, market cap, P/E and sector (in Tunisian dinars), with the company name. Pass codes (the BVMT ticker, comma-separate up to 20, e.g. BIAT,SFBT).",
"count": 2,
"quotes": [
{
"low": 159.4,
"high": 159.5,
"open": 159.49,
"price": 159.48,
"change": 0,
"sector": "Finance",
"ticker": "BIAT",
"volume": 656,
"company": "Banque Internationale Arabe de Tunisie SA",
"currency": "TND",
"pe_ratio": null,
"market_cap": 6506783704,
"change_percent": 0
},
{
"low": 14.4,
"high": 14.98,
"open": 14.98,
"price": 14.55,
"change": -0.75,
"sector": "Consumer Non-Durables",
"ticker": "SFBT",
"volume": 24239,
"company": "Societe de Fabrication des Boissons de Tunisie SA",
"currency": "TND",
"pe_ratio": null,
"market_cap": 3901218801,
"change_percent": -4.9
}
],
"source": "Tunis Stock Exchange / BVMT (TradingView)"
},
"meta": {
"timestamp": "2026-06-15T02:10:23.202Z",
"request_id": "b7392aea-b6ba-458a-b683-37b82e91f5bb"
},
"status": "ok",
"message": "Quote retrieved successfully",
"success": true
}