빗썸은 너무 고맙게도 시세 '한꺼번에' 조회가 가능함 ㅅㅅ
https://api.bithumb.com/public/ticker/ALL_KRW%20/
(1) 근데 업비트는 전체조회 url은 없는 거 같고, 1개씩만 가능
https://api.upbit.com/v1/ticker?markets=KRW-BTC
(2) 따라서 아래 url의 "market" 파라미터를 통해 시세 조회할 코인의 이름? 코드?를 알아내야 함.
https://api.upbit.com/v1/market/all
[{"market":"KRW-BTC","korean_name":"비트코인","english_name":"Bitcoin"},
{"market":"KRW-ETH","korean_name":"이더리움","english_name":"Ethereum"},
{"market":"BTC-ETH","korean_name":"이더리움","english_name":"Ethereum"} .......
최근 가격 1개만 리턴 (Latest price for a symbol or symbols.)
https://api.binance.com/api/v3/ticker/price
전일종가 포함 앵간한 유형의 가격 및 거래량 등 온갖 정보 요청하는 url
https://api.binance.com/api/v3/ticker/24hr
api 설명 사이트 : https://binance-docs.github.io/apidocs/spot/en/#current-average-price
api 설명 깃허브 : https://github.com/binance/binance-spot-api-docs/blob/master/rest-api.md#24hr-ticker-price-change-statistics
REST API를 이용한 업비트 시세 수신
https://docs.upbit.com/docs/upbit-quotation-restful-api

WebSocket을 이용한 업비트 시세 수신
https://docs.upbit.com/docs/upbit-quotation-websocket
