zapi.
APIsPricingDocsMCP
APIsPricingDocsMCPSign in
zapi.
APIsPricingDocsMCP
APIsPricingDocsMCPSign in
On this page
  • Playground
  • Code examples
  • Full reference
  • Related APIs
Finance/Stooq
Logo Stooq

Stooq

Stooq — single-symbol quote off the HTML quote page.

Endpoints
2
Requests
753
Updated
5 hours ago
For LLMs
llms.txt
Endpoint healthnot yet measured
  • quotenot measured
  • historynot measured
no measurements yetdaily 01:00 WIB

Playground

2 endpoints
GET/v1/finance:stooq/quote30s cache1 paramchecking key…
Parameters
symbolstringrequired

Stooq symbol. FX/metals xauusd, crypto btcusd, US equity aapl.us, commodity cl.f

·
Response
EXAMPLE
{
  "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
}

Code examples

Quote
zpi-sdkrecommended
// 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);
Full SDK reference →
request.sh
curl -X GET "https://api.zpi.web.id/v1/finance:stooq/quote?symbol=xauusd" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Full reference

2 endpoints · plain text
GETQuote/v1/finance:stooq/quoteStooq — single-symbol quote off the HTML quote page.

Parameters

symbolstringrequired
Stooq symbol. FX/metals xauusd, crypto btcusd, US equity aapl.us, commodity cl.f

Request

curl -X GET "https://api.zpi.web.id/v1/finance:stooq/quote?symbol=xauusd" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "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
}
GETHistory/v1/finance:stooq/historyStooq — daily OHLC history off the HTML history page.

Parameters

symbolstringrequired
Stooq symbol. FX/metals xauusd, crypto btcusd, US equity aapl.us, commodity cl.f
pagenumberoptional
Page of 40 daily rows, newest first. Default 1
fromstringoptional
Oldest date to include, YYYY-MM-DD
tostringoptional
Newest date to include, YYYY-MM-DD

Request

curl -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"

Example response

{
  "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"
}

Related APIs

More in finance

Pluang

finance/pluang

Data pasar Pluang lintas aset: order book, running trade, tradebook dan ringkasan broker per saham IDX, plus saham Amerika, emas, kripto, sinyal analis dan berita.

27.9K calls·1d cache

Binance Vision

finance/binance-vision

Binance's public bulk archive: klines, 5-minute open-interest and long/short metrics, funding, book depth and liquidations, back to 2017.

7.9K calls·1d cache

TradingView

finance/tradingview

Screener, charts, technical indicators, fundamentals, news and the macro calendar across 16 markets — Indonesian equities, US equities, crypto, forex and futures.

57K calls·1d cache

Stockbit

finance/stockbit

Data saham IDX dari Stockbit: harga, chart intraday, profil emiten, diskusi komunitas, dan kamus investasi.

17.8K calls·1d cache

Mempool Space

finance/mempool-space

Recommended fee tiers in sat/vB, as mempool.space's own estimator sees them.

1.1K calls·2m cache

Etherscan

finance/etherscan

Current gas price tiers and base fee, from Etherscan's V2 multichain API.

683 calls·30s cache
Browse APIsPricingDocsMCP serverGet an API key
zapi.One key, one response shape.
TermsPrivacyCookiesAUPRefunds© 2026