Stooq — single-symbol quote off the HTML quote page.
quotenot measuredhistorynot measured/v1/finance:stooq/quote30s cache1 paramchecking key…// npm i zpi-sdk
import { ZpiClient } from "zpi-sdk";
const client = new ZpiClient({ apiKey: "zpi_xxxxxxxxxxxxxxxxxxxxxxxx" });
const data = await client.run("finance:stooq", "quote", {
"symbol": "xauusd"
});
console.log(data);curl -X GET "https://api.zpi.web.id/v1/finance:stooq/quote?symbol=xauusd" \
-H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"/v1/finance:stooq/quoteStooq — single-symbol quote off the HTML quote page.symbolstringrequiredxauusd, crypto btcusd, US equity aapl.us, commodity cl.fcurl -X GET "https://api.zpi.web.id/v1/finance:stooq/quote?symbol=xauusd" \
-H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"{
"ask": 4528.66,
"bid": 4528.11,
"low": 4509.89,
"date": "2026-08-21",
"high": 4542.47,
"last": 4528.39,
"name": "Gold (ozt) / U.S. Dollar",
"open": 4518.26,
"time": "04:26:24",
"change": 9.01,
"symbol": "xauusd",
"volume": null,
"askSize": null,
"bidSize": null,
"provider": "stooq",
"turnover": null,
"tradeCount": null,
"openInterest": null,
"changePercent": 0.2,
"previousClose": 4519.38
}/v1/finance:stooq/historyStooq — daily OHLC history off the HTML history page.symbolstringrequiredxauusd, crypto btcusd, US equity aapl.us, commodity cl.fpagenumberoptionalfromstringoptionaltostringoptionalcurl -X GET "https://api.zpi.web.id/v1/finance:stooq/history?symbol=xauusd&page=1&from=2024-01-01&to=2024-01-31" \
-H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"{
"to": null,
"from": null,
"name": "Gold (ozt) / U.S. Dollar",
"page": 1,
"count": 40,
"items": [
{
"low": 4450.995,
"date": "2026-08-20",
"high": 4540.275,
"open": 4522.985,
"close": 4519.375,
"change": -3.66,
"volume": null,
"changePercent": -0.08
},
{
"low": 4325.405,
"date": "2026-08-19",
"high": 4524.295,
"open": 4336.765,
"close": 4523.035,
"change": 188.73,
"volume": null,
"changePercent": 4.35
},
{
"low": 4329.385,
"date": "2026-08-18",
"high": 4435.785,
"open": 4417.835,
"close": 4334.305,
"change": -82.41,
"volume": null,
"changePercent": -1.87
},
{
"low": 4367.485,
"date": "2026-08-17",
"high": 4428.865,
"open": 4376.385,
"close": 4416.715,
"change": 40.45,
"volume": null,
"changePercent": 0.92
},
{
"low": 4311.095,
"date": "2026-08-14",
"high": 4396.845,
"open": 4354.125,
"close": 4376.265,
"change": 25.09,
"volume": null,
"changePercent": 0.58
},
{
"low": 4344.735,
"date": "2026-08-13",
"high": 4449.085,
"open": 4410.705,
"close": 4351.175,
"change": -57.42,
"volume": null,
"changePercent": -1.3
},
{
"low": 4362.655,
"date": "2026-08-12",
"high": 4440.155,
"open": 4372.515,
"close": 4408.595,
"change": 40.46,
"volume": null,
"changePercent": 0.93
},
{
"low": 4356.965,
"date": "2026-08-11",
"high": 4435.135,
"open": 4389.525,
"close": 4368.135,
"change": -22.23,
"volume": null,
"changePercent": -0.51
}
],
"total": 15315,
"symbol": "xauusd",
"hasMore": true,
"nextPage": 2,
"provider": "stooq"
}