/v1/stocks
Whole-market snapshot
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/pse-api/v1/stocks" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/pse-api/v1/stocks", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/pse-api/v1/stocks");
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/pse-api/v1/stocks",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"note": "The whole-market snapshot of every PSE-listed stock — each with its price (PHP), percent change and volume. Sort by symbol (default), change, volume or price; page with offset and limit (max 500). The full Philippine market tape.",
"sort": "volume",
"as_of": "2026-06-15T00:00:00+08:00",
"count": 50,
"total": 385,
"offset": 0,
"source": "PSE",
"stocks": [
{
"name": "Ayala Land, Inc.",
"price": 13.8,
"symbol": "ALI",
"volume": 13067800,
"currency": "PHP",
"percent_change": 8.32
},
{
"name": "Apollo Global Capital, Inc.",
"price": 0.0065,
"symbol": "APL",
"volume": 6000000,
"currency": "PHP",
"percent_change": 3.17
},
{
"name": "ACEN CORPORATION",
"price": 3.26,
"symbol": "ACEN",
"volume": 5033000,
"currency": "PHP",
"percent_change": 0.93
},
{
"name": "DITO CME Holdings Corp.",
"price": 0.75,
"symbol": "DITO",
"volume": 3249000,
"currency": "PHP",
"percent_change": 5.63
},
{
"name": "SP New Energy Corporation",
"price": 1.36,
"symbol": "SPNEC",
"volume": 2685000,
"currency": "PHP",
"percent_change": 3.03
},
{
"name": "BDO Unibank, Inc.",
"price": 122.3,
"symbol": "BDO",
"volume": 2358030,
"currency": "PHP",
"percent_change": 5.16
},
{
"name": "Apex Mining Co., Inc.",
"price": 14.9,
"symbol": "APX",
"volume": 2339100,
"currency": "PHP",
"percent_change": 5.23
},
{
"name": "D&L Industries, Inc.",
"price": 3.73,
"symbol": "DNL",
"volume": 1991000,
"currency": "PHP",
"percent_change": 2.47
},
{
"name": "Everwoods Green Resources and Holdings, Inc.",
"price": 0.031,
"symbol": "EGRN",
"volume": 1800000,
"currency": "PHP",
"percent_change": 0
},
{
"name": "DigiPlus Interactive Corp.",
"price": 11.7,
"symbol": "PLUS",
"volume": 1800000,
"currency": "PHP",
"percent_change": 9.96
},
…