Quote Service API

Quote Service API

Apa itu Quote Service ?

Quote service adalah layanan API yang memberikan akses terhadap harga terakhir dari instrumen, yang dapat digunakan pada aplikasi/platform lain (contoh: Google sheet)

Contoh Pengunaan

Batch File (Windows)

for /f "usebackq delims=" %%i in (`powershell -Command "(New-Object System.Net.WebClient).DownloadString('https://courtyard.wealthkit.biz.id/api/public/quote?format=raw-price&symbol=IDX:ASII')"`) do set "PRICE=%%i"

Perintah diatas akan mendownload harga terakhir dari IDX:ASII dan menyimpannya dalam environment variable PRICE.

Google Sheet

=IMPORTXML(CONCAT("https://courtyard.wealthkit.biz.id/api/public/quote?format=xml&symbol=",A1), "//response/data/last")

Formula diatas akan mendownload harga terakhir dari simbol instrument yang tersimpan terletak pada sel A1 (contoh: BINANCE:BTCUSDT) dan menampilkannya pada sel tempat formula diletakkan.