코인으로 부자되기/트레이딩

업비트 비트코인 가격 javascript api [2024]

야나부짱 2024. 4. 20. 12:18

아래 api를 통해서 쉽게 비트코인 가격을 가져올 수 있다. 굿굿

 

https://github.com/dryadsoft/node-upbit

 

GitHub - dryadsoft/node-upbit: Node.js를 이용하여 업비트 API 사용하기

Node.js를 이용하여 업비트 API 사용하기. Contribute to dryadsoft/node-upbit development by creating an account on GitHub.

github.com

const node_upbit = require('node-upbit');
async function get_btc_price() {
    const quoationService  = new node_upbit.QuoationService();
    const res6 = await quoationService.getTicker(["KRW-BTC"]);
    console.log('res', res6[0].trade_price);
    cur_btc_price = res6[0].trade_price;
    return cur_btc_price*1;
}