FOREX · Forex
NZDSGD
New Zealand Dollar vs Singapore Dollar
0.7393
▲ 0.08% today
Last 24 hours
Bid
0.7390
Ask
0.7396
Day High
0.7391
Day Low
0.7359
NZDSGD key statistics
1 week
-0.81%
1 month
-2.00%
52w high
0.77020
52w low
0.72768
Avg daily range
+0.44%
History from
11 Nov 2025
Highs and lows are taken from 261 daily bars — the high was set on 30 Jan 2026 and the low on 25 Nov 2025. NZDSGD is quoted to 5 decimal places, minimum tick 0.00001, spread at last quote 0.00063, quoted in USD on FOREX, sourced from MetaTrader 5 (Broker 1).
NZDSGD daily history
| Date | Open | High | Low | Close | Change |
|---|---|---|---|---|---|
| 11 Sept 2026 | 0.73620 | 0.73944 | 0.73620 | 0.73933 | +0.43% |
| 10 Sept 2026 | 0.73878 | 0.74026 | 0.73455 | 0.73624 | -0.34% |
| 09 Sept 2026 | 0.74079 | 0.74130 | 0.73772 | 0.73875 | -0.28% |
| 08 Sept 2026 | 0.74442 | 0.74444 | 0.73876 | 0.74080 | -0.49% |
| 07 Sept 2026 | 0.74541 | 0.74555 | 0.74368 | 0.74443 | -0.13% |
| 06 Sept 2026 | 0.74484 | 0.74543 | 0.74471 | 0.74538 | +0.07% |
| 04 Sept 2026 | 0.74539 | 0.74758 | 0.74208 | 0.74483 | -0.08% |
| 03 Sept 2026 | 0.74389 | 0.74589 | 0.74261 | 0.74541 | +0.20% |
| 02 Sept 2026 | 0.75048 | 0.75101 | 0.73934 | 0.74393 | -0.87% |
| 01 Sept 2026 | 0.75268 | 0.75333 | 0.74964 | 0.75040 | -0.30% |
NZDSGD API access
New Zealand Dollar vs Singapore Dollar prices are available over REST and WebSocket with no API key and no signup. Rate limit is 15,000 requests per minute per IP.
curl
curl "https://biquote.io/api/NZDSGD"
Python
import requests
r = requests.get("https://biquote.io/api/NZDSGD")
tick = r.json()
print(tick["mid"], tick["dayDiffPercent"])JavaScript
const r = await fetch("https://biquote.io/api/NZDSGD");
const tick = await r.json();
console.log(tick.mid, tick.dayDiffPercent);WebSocket
// SignalR hub — pushes every tick for NZDSGD
const conn = new signalR.HubConnectionBuilder()
.withUrl("https://biquote.io/hubs/tick")
.build();
conn.on("ReceiveTick", t => console.log(t.symbol, t.mid));
await conn.start();
await conn.invoke("Subscribe", "NZDSGD");Also available for NZDSGD: daily candles, hourly candles · full API documentation